123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- name: build
- on:
- push:
- pull_request:
- schedule:
- - cron: '0 0 1 * *'
- jobs:
- build-linux-ubuntu:
- runs-on: ubuntu-latest
- steps:
- - name: install dependencies
- run: |
- sudo apt-get update
- sudo apt-get install libzip-dev libcurl4-openssl-dev libusb-1.0-0-dev
- - name: prepare environment
- run: |
- echo "target_triplet=`gcc -dumpmachine`" >> $GITHUB_ENV
- - name: fetch libirecovery
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libirecovery-latest_${{env.target_triplet}}
- repo: libimobiledevice/libirecovery
- - name: fetch libplist
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libplist-latest_${{env.target_triplet}}
- repo: libimobiledevice/libplist
- - name: fetch libusbmuxd
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libusbmuxd-latest_${{env.target_triplet}}
- repo: libimobiledevice/libusbmuxd
- - name: fetch libimobiledevice-glue
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libimobiledevice-glue-latest_${{env.target_triplet}}
- repo: libimobiledevice/libimobiledevice-glue
- - name: fetch libimobiledevice
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libimobiledevice-latest_${{env.target_triplet}}
- repo: libimobiledevice/libimobiledevice
- - name: fetch libtatsu
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libtatsu-latest_${{env.target_triplet}}
- repo: libimobiledevice/libtatsu
- - name: install external dependencies
- run: |
- mkdir extract
- for I in *.tar; do
- tar -C extract -xvf $I
- done
- rm -rf extract/lib
- sudo cp -r extract/* /
- sudo ldconfig
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - name: autogen
- run: ./autogen.sh PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
- - 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 idevicerestore.tar usr
- - name: publish artifact
- uses: actions/upload-artifact@v4
- with:
- name: idevicerestore-latest_${{env.target_triplet}}
- path: idevicerestore.tar
- 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
- shell: bash
- - name: fetch libirecovery
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libirecovery-latest_macOS
- repo: libimobiledevice/libirecovery
- - name: fetch libplist
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libplist-latest_macOS
- repo: libimobiledevice/libplist
- - name: fetch libusbmuxd
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libusbmuxd-latest_macOS
- repo: libimobiledevice/libusbmuxd
- - name: fetch libimobiledevice-glue
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libimobiledevice-glue-latest_macOS
- repo: libimobiledevice/libimobiledevice-glue
- - name: fetch libimobiledevice
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libimobiledevice-latest_macOS
- repo: libimobiledevice/libimobiledevice
- - name: fetch libtatsu
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libtatsu-latest_macOS
- repo: libimobiledevice/libtatsu
- - 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@v4
- - name: install additional requirements
- run: |
- SDKDIR=`xcrun --sdk macosx --show-sdk-path 2>/dev/null`
- echo "SDKDIR=$SDKDIR" >> $GITHUB_ENV
- 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"
- echo "BUILD_CFLAGS=$CFLAGS" >> $GITHUB_ENV
- mkdir -p deps
- FILENAME="libzip-static.tar.bz2"
- curl -o $FILENAME.b64 -Ls "https://gist.github.com/nikias/3da15d03120382f87b44029cd8495a02/raw/99cd8138fed99e8f6530b6f179f787342c698e1f/libzip-1.7.1_static_macOS.tar.bz2"
- base64 -D < $FILENAME.b64 > $FILENAME
- tar -C deps -xjf $FILENAME
- echo "LIBZIP_CFLAGS=-I`pwd`/deps/include" >> $GITHUB_ENV
- echo "LIBZIP_LIBS=`pwd`/deps/lib/libzip.a -Xlinker ${SDKDIR}/usr/lib/libbz2.tbd -Xlinker ${SDKDIR}/usr/lib/liblzma.tbd -lz" >> $GITHUB_ENV
- - name: autogen
- run: |
- export CFLAGS="${{env.BUILD_CFLAGS}} -Wno-nullability-completeness -Wno-expansion-to-defined"
- echo "Using CFLAGS: $CFLAGS"
- ./autogen.sh PKG_CONFIG_PATH=/usr/local/lib/pkgconfig \
- libcurl_CFLAGS="-I${{env.SDKDIR}}/usr/include" libcurl_LIBS="-lcurl" \
- libzip_CFLAGS="$LIBZIP_CFLAGS" libzip_LIBS="$LIBZIP_LIBS" \
- zlib_CFLAGS="-I${{env.SDKDIR}}/usr/include" zlib_LIBS="-lz" \
- libimobiledevice_CFLAGS="-I/usr/local/include" libimobiledevice_LIBS="-L/usr/local/lib -lusbmuxd-2.0 -limobiledevice-glue-1.0 -limobiledevice-1.0"
- - 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 idevicerestore.tar usr
- - name: publish artifact
- uses: actions/upload-artifact@v4
- with:
- name: idevicerestore-latest_macOS
- path: idevicerestore.tar
- build-windows:
- runs-on: windows-2019
- defaults:
- run:
- shell: msys2 {0}
- strategy:
- fail-fast: false
- matrix:
- include: [
- { msystem: MINGW64, arch: x86_64 },
- { msystem: MINGW32, arch: i686 }
- ]
- steps:
- - uses: msys2/setup-msys2@v2
- with:
- msystem: ${{ matrix.msystem }}
- release: false
- update: false
- install: >-
- base-devel
- git
- mingw-w64-${{ matrix.arch }}-gcc
- make
- libtool
- autoconf
- automake-wrapper
- liblzma
- - name: prepare environment
- run: |
- dest=`echo ${{ matrix.msystem }} |tr [:upper:] [:lower:]`
- echo "dest=$dest" >> $GITHUB_ENV
- echo "target_triplet=`gcc -dumpmachine`" >> $GITHUB_ENV
- - name: fetch libirecovery
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libirecovery-latest_${{ matrix.arch }}-${{ env.dest }}
- repo: libimobiledevice/libirecovery
- - name: fetch libplist
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libplist-latest_${{ matrix.arch }}-${{ env.dest }}
- repo: libimobiledevice/libplist
- - name: fetch libusbmuxd
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libusbmuxd-latest_${{ matrix.arch }}-${{ env.dest }}
- repo: libimobiledevice/libusbmuxd
- - name: fetch libimobiledevice-glue
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libimobiledevice-glue-latest_${{ matrix.arch }}-${{ env.dest }}
- repo: libimobiledevice/libimobiledevice-glue
- - name: fetch libimobiledevice
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libimobiledevice-latest_${{ matrix.arch }}-${{ env.dest }}
- repo: libimobiledevice/libimobiledevice
- - name: fetch libtatsu
- uses: dawidd6/action-download-artifact@v6
- with:
- github_token: ${{secrets.GITHUB_TOKEN}}
- workflow: build.yml
- name: libtatsu-latest_${{ matrix.arch }}-${{ env.dest }}
- repo: libimobiledevice/libtatsu
- - name: install external dependencies
- run: |
- mkdir extract
- for I in *.tar; do
- tar -C extract -xvf $I
- done
- cp -r extract/* /
- - uses: actions/checkout@v4
- - name: install additional requirements
- run: |
- FILENAME="libzip-1.7.1-static.tar.bz2"
- curl -o $FILENAME.b64 -Ls "https://gist.github.com/nikias/3da15d03120382f87b44029cd8495a02/raw/99cd8138fed99e8f6530b6f179f787342c698e1f/libzip-1.7.1_static_${{matrix.arch}}-${{env.dest}}.tar.bz2"
- base64 -d < $FILENAME.b64 > $FILENAME
- mkdir deps
- tar -C deps -xjf $FILENAME
- echo "LIBZIP_CFLAGS=-I`pwd`/deps/include" >> $GITHUB_ENV
- echo "LIBZIP_LIBS=`pwd`/deps/lib/libzip.a /${{env.dest}}/lib/libbz2.a /${{env.dest}}/lib/liblzma.a " >> $GITHUB_ENV
- FILENAME="libcurl-8.1.0-static.tar.bz2"
- curl -o $FILENAME.b64 -Ls "https://gist.github.com/nikias/6c397a0a2f4f4eafd91b81cccd22b761/raw/85216e60af6787f3b351291165eb91bd585ff09a/libcurl-8.1.0-static-${{matrix.arch}}-${{env.dest}}.tar.bz2"
- base64 -d < $FILENAME.b64 > $FILENAME
- tar -C deps -xjf $FILENAME
- echo "LIBCURL_CFLAGS=-I`pwd`/deps/include -DCURL_STATICLIB" >> $GITHUB_ENV
- echo "LIBCURL_LIBS=`pwd`/deps/lib/libcurl.a /${{env.dest}}/lib/libzstd.a -lws2_32 -lcrypt32 -lwldap32 -lbcrypt -lssl -lcrypto" >> $GITHUB_ENV
- - name: autogen
- run: |
- ./autogen.sh CC=gcc CXX=g++ \
- libzip_VERSION=1.7.1 libzip_CFLAGS="${{env.LIBZIP_CFLAGS}}" libzip_LIBS="${{env.LIBZIP_LIBS}}" \
- zlib_LIBS="/${{env.dest}}/lib/libz.a" libcurl_CFLAGS="${{env.LIBCURL_CFLAGS}}" libcurl_LIBS="$LIBCURL_LIBS"
- - name: make
- run: make
- - name: make install
- run: make install
- - name: prepare artifact
- run: |
- mkdir -p dest
- DESTDIR=`pwd`/dest make install
- tar -C dest -cf idevicerestore.tar ${{ env.dest }}
- - name: publish artifact
- uses: actions/upload-artifact@v4
- with:
- name: idevicerestore-latest_${{ matrix.arch }}-${{ env.dest }}
- path: idevicerestore.tar
- build-docker:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - name: build
- run: |
- pushd docker && ./build.sh; popd
- docker image save -o idevicerestore-docker.tar idevicerestore-docker
- - name: publish artifact
- uses: actions/upload-artifact@v4
- with:
- name: idevicerestore-latest_docker
- path: idevicerestore-docker.tar
|