Update build.yml #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push | |
jobs: | |
build-macOS: | |
runs-on: macOS-latest | |
steps: | |
- name: install dependencies | |
run: | | |
if test -x "`which port`"; then | |
sudo port install libtool autoconf automake pkgconfig | |
else | |
brew install libtool autoconf automake pkgconfig | |
fi | |
pip install --break-system-packages cython setuptools | |
shell: bash | |
- name: fetch libplist | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
workflow: build.yml | |
name: libplist-latest_macOS | |
repo: LukeeGD/libplist | |
- name: fetch libusbmuxd | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
workflow: build.yml | |
name: libusbmuxd-latest_macOS | |
repo: LukeeGD/libusbmuxd | |
- name: fetch libimobiledevice-glue | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
workflow: build.yml | |
name: libimobiledevice-glue-latest_macOS | |
repo: LukeeGD/libimobiledevice-glue | |
- name: install external dependencies | |
run: | | |
mkdir extract | |
for I in *.tar; do | |
tar -C extract -xvf $I | |
done | |
sudo cp -r extract/* / | |
- uses: actions/checkout@v3 | |
- name: install additional requirements | |
run: | | |
mkdir -p lib | |
curl -o lib/libcrypto.35.tbd -Ls \ | |
https://gist.github.com/nikias/94c99fd145a75a5104415e5117b0cafa/raw/5209dfbff5a871a14272afe4794e76eb4cf6f062/libcrypto.35.tbd | |
curl -o lib/libssl.35.tbd -Ls \ | |
https://gist.github.com/nikias/94c99fd145a75a5104415e5117b0cafa/raw/5209dfbff5a871a14272afe4794e76eb4cf6f062/libssl.35.tbd | |
echo "LIBSSL=`pwd`/lib/libssl.35.tbd" >> $GITHUB_ENV | |
echo "LIBCRYPTO=`pwd`/lib/libcrypto.35.tbd" >> $GITHUB_ENV | |
LIBRESSL_VER=2.2.7 | |
echo "LIBRESSL_VER=$LIBRESSL_VER" >> $GITHUB_ENV | |
FILENAME="libressl-$LIBRESSL_VER.tar.gz" | |
curl -o $FILENAME -Ls "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/$FILENAME" | |
mkdir -p deps | |
tar -C deps -xzf $FILENAME | |
echo "DEPSDIR=`pwd`/deps" >> $GITHUB_ENV | |
- name: autogen | |
run: | | |
SDKDIR=`xcrun --sdk macosx --show-sdk-path` | |
TESTARCHS="arm64 x86_64" | |
USEARCHS= | |
for ARCH in $TESTARCHS; do | |
if echo "int main(int argc, char **argv) { return 0; }" |clang -arch $ARCH -o /dev/null -isysroot $SDKDIR -x c - 2>/dev/null; then | |
USEARCHS="$USEARCHS -arch $ARCH" | |
fi | |
done | |
export CFLAGS="$USEARCHS -isysroot $SDKDIR" | |
echo "Using CFLAGS: $CFLAGS" | |
./autogen.sh PKG_CONFIG_PATH=/usr/local/lib/pkgconfig --enable-debug \ | |
openssl_CFLAGS="-I${{ env.DEPSDIR }}/libressl-${{ env.LIBRESSL_VER }}/include" \ | |
openssl_LIBS="-Xlinker ${{ env.LIBSSL }} -Xlinker ${{ env.LIBCRYPTO }}" | |
- name: make | |
run: make | |
- name: make install | |
run: sudo make install | |
- name: prepare artifact | |
run: | | |
mkdir -p dest | |
DESTDIR=`pwd`/dest make install | |
tar -C dest -cf libimobiledevice.tar usr | |
- name: publish artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: libimobiledevice-latest_macOS | |
path: libimobiledevice.tar |