diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a8c7e7..726f3cc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ on: default: 'false' env: - version: m105-adda216f-3 + version: m105-adda216f-4 jobs: macos: @@ -69,34 +69,6 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - linux-ubuntu14: - runs-on: ubuntu-latest - container: ubuntu:14.04 - strategy: - matrix: - build_type: [ Release, Debug ] - fail-fast: false - steps: - - uses: actions/checkout@v2 - - run: sudo ./script/prepare_linux.sh - - run: sudo apt-get install binutils-2.26 -y - - run: python3 script/check_release.py --version ${{ env.version }} --build-type ${{ matrix.build_type }} --classifier ubuntu14 - if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - run: python3 script/checkout.py --version ${{ env.version }} - - run: PATH=/usr/lib/binutils-2.26/bin:$PATH python3 script/build.py --build-type ${{ matrix.build_type }} - - run: python3 script/archive.py --version ${{ env.version }} --classifier ubuntu14 --build-type ${{ matrix.build_type }} - - uses: actions/upload-artifact@v2 - if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} - with: - name: Skia-${{ env.version }}-linux-${{ matrix.build_type }}-x64-ubuntu14.zip - path: '*.zip' - - run: python3 script/release.py --version ${{ env.version }} --classifier ubuntu14 --build-type ${{ matrix.build_type }} - if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - linux-wasm: runs-on: ubuntu-latest container: ubuntu:20.04