name: Dockcross CI on: push: branches: - "*" paths-ignore: - "**.md" pull_request: branches: - "*" paths-ignore: - "**.md" workflow_dispatch: jobs: base: name: base runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: build run: make base - name: test run: make base.test - name: archive base run: | mkdir -p cache docker save dockcross/base:latest | xz -e9 -T0 > ./cache/base.tar.xz - name: save base uses: actions/upload-artifact@v2 with: name: cache path: ./cache retention-days: 1 - name: deploy if: github.ref == 'refs/heads/master' run: | docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }} docker image push dockcross/base --all-tags image: name: ${{ matrix.arch_name.image }} needs: base runs-on: ubuntu-latest strategy: fail-fast: false matrix: arch_name: # Android images - { image: "android-arm", stockfish: "yes", stockfish_arg: "ARCH=armv7 COMP=ndk", openssl: "yes", openssl_arg: "", } - { image: "android-arm64", stockfish: "yes", stockfish_arg: "ARCH=armv8 COMP=ndk", openssl: "yes", openssl_arg: "", } - { image: "android-x86", stockfish: "yes", stockfish_arg: "ARCH=x86-32 COMP=ndk", openssl: "yes", openssl_arg: "", } - { image: "android-x86_64", stockfish: "yes", stockfish_arg: "ARCH=x86-64 COMP=ndk", openssl: "yes", openssl_arg: "", } # Linux arm64/armv8 images - { image: "linux-arm64", stockfish: "yes", stockfish_arg: "ARCH=armv8", openssl: "yes", openssl_arg: "linux-aarch64", } - { image: "linux-arm64-musl", stockfish: "yes", stockfish_arg: "ARCH=armv8", openssl: "yes", openssl_arg: "linux-aarch64", } - { image: "linux-arm64-full", stockfish: "yes", stockfish_arg: "ARCH=armv8", openssl: "yes", openssl_arg: "linux-aarch64", } # Linux armv5 images - { image: "linux-armv5", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "linux-armv4", } - { image: "linux-armv5-musl", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "linux-armv4", } # Linux armv6 images - { image: "linux-armv6", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "linux-armv6", } - { image: "linux-armv6-lts", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "linux-armv6", } - { image: "linux-armv6-musl", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "linux-armv6", } # Linux armv7 images - { image: "linux-armv7", stockfish: "yes", stockfish_arg: "ARCH=armv7", openssl: "yes", openssl_arg: "linux-armv7", } - { image: "linux-armv7a", stockfish: "yes", stockfish_arg: "ARCH=armv7-neon", openssl: "yes", openssl_arg: "linux-armv7", } - { image: "linux-armv7l-musl", stockfish: "yes", stockfish_arg: "ARCH=armv7", openssl: "yes", openssl_arg: "linux-armv7", } # Linux x86 images - { image: "linux-x86", stockfish: "yes", stockfish_arg: "ARCH=x86-32-sse41-popcnt", openssl: "yes", openssl_arg: "", } # Linux x86_64 images - { image: "linux-x64", stockfish: "yes", stockfish_arg: "ARCH=x86-64-modern", openssl: "yes", openssl_arg: "linux-x86_64", } - { image: "linux-x64-tinycc", stockfish: "yes", stockfish_arg: "ARCH=x86-64-modern", openssl: "yes", openssl_arg: "linux-x86_64", } - { image: "linux-x64-clang", stockfish: "yes", stockfish_arg: "ARCH=x86-64-modern COMP=clang", openssl: "yes", openssl_arg: "linux-x86_64", } - { image: "linux-x86_64-full", stockfish: "yes", stockfish_arg: "ARCH=x86-64-modern", openssl: "yes", openssl_arg: "linux-x86_64", } # Linux riscv images - { image: "linux-riscv32", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } - { image: "linux-riscv64", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } # Linux s390x images - { image: "linux-s390x", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } # Linux mips images - { image: "linux-mips", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } # Linux ppc64le images - { image: "linux-ppc64le", stockfish: "yes", stockfish_arg: "ARCH=ppc-64", openssl: "yes", openssl_arg: "", } # Linux m68k images - { image: "linux-m68k-uclibc", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } # Linux xtensa images - { image: "linux-xtensa-uclibc", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } # Windows x86_x64 images - { image: "windows-static-x64", stockfish: "yes", stockfish_arg: "ARCH=x86-64-modern COMP=mingw", openssl: "yes", openssl_arg: "", } - { image: "windows-static-x64-posix", stockfish: "yes", stockfish_arg: "ARCH=x86-64-modern COMP=mingw", openssl: "yes", openssl_arg: "", } - { image: "windows-shared-x64", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } - { image: "windows-shared-x64-posix", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } # Windows x86 images - { image: "windows-static-x86", stockfish: "yes", stockfish_arg: "ARCH=x86-32-sse41-popcnt COMP=mingw", openssl: "yes", openssl_arg: "", } - { image: "windows-shared-x86", stockfish: "no", stockfish_arg: "" } # Windows arm images - { image: "windows-armv7", stockfish: "yes", stockfish_arg: "ARCH=armv7-neon COMP=clang", openssl: "yes", openssl_arg: "", } - { image: "windows-arm64", stockfish: "yes", stockfish_arg: "ARCH=armv8 COMP=clang", openssl: "yes", openssl_arg: "", } # manylinux2014 images - { image: "manylinux2014-x86", stockfish: "yes", stockfish_arg: "ARCH=x86-32-sse41-popcnt", openssl: "yes", openssl_arg: "", } - { image: "manylinux2014-x64", stockfish: "yes", stockfish_arg: "ARCH=x86-64-modern", openssl: "yes", openssl_arg: "linux-x86_64", } - { image: "manylinux2014-aarch64", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } # web-wasm images - { image: "web-wasm", stockfish: "no", stockfish_arg: "", openssl: "yes", openssl_arg: "", } steps: - uses: actions/checkout@v2 - uses: actions/download-artifact@v2 with: name: cache path: ./cache - name: load base run: xz -d -k < ./cache/base.tar.xz | docker load - name: build run: make ${{ matrix.arch_name.image }} - name: basic test run: make ${{ matrix.arch_name.image }}.test - name: stockfish build test if: ${{ matrix.arch_name.stockfish == 'yes' }} run: | git clone https://github.com/official-stockfish/Stockfish.git cd Stockfish git checkout sf_14 cd src ./../../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} net ./../../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} build ${{ matrix.arch_name.stockfish_arg }} -j2 - name: openssl build test if: ${{ matrix.arch_name.openssl == 'yes' }} run: | git clone https://github.com/openssl/openssl.git cd openssl git checkout openssl-3.0.0-beta2 ./Configure ${{ matrix.arch_name.openssl_arg }} ./../../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} -j2 - name: deploy if: github.ref == 'refs/heads/master' run: | docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }} docker image push dockcross/${{ matrix.arch_name.image }} --all-tags