Skip to content

Commit

Permalink
Drop linux-gcc4, move linux from 16.04 to 18.04
Browse files Browse the repository at this point in the history
  • Loading branch information
tonsky committed Nov 3, 2021
1 parent 64ef292 commit 675725b
Showing 1 changed file with 2 additions and 25 deletions.
27 changes: 2 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
API_TOKEN: ${{ secrets.API_TOKEN }}

linux:
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
strategy:
matrix:
build_type: [Release, Debug]
Expand All @@ -67,31 +67,8 @@ jobs:
env:
API_TOKEN: ${{ secrets.API_TOKEN }}

linux-gcc4:
runs-on: ubuntu-latest
container: ubuntu:14.04
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 }} --classifier gcc4
if: ${{ github.event.inputs.skip_release != 'true' }}
env:
API_TOKEN: ${{ secrets.API_TOKEN }}
- run: PATH=/usr/lib/binutils-2.26/bin:$PATH python3 script/checkout.py --version ${{ env.version }}
- run: PATH=/usr/lib/binutils-2.26/bin:$PATH python3 script/build.py
- run: PATH=/usr/lib/binutils-2.26/bin:$PATH python3 script/archive.py --version ${{ env.version }} --classifier gcc4
- uses: actions/upload-artifact@v2
with:
name: Skia-${{ env.version }}-linux-Release-x64-gcc4.zip
path: '*.zip'
- run: python3 script/release.py --version ${{ env.version }} --classifier gcc4
if: ${{ github.event.inputs.skip_release != 'true' }}
env:
API_TOKEN: ${{ secrets.API_TOKEN }}

android:
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
strategy:
matrix:
machine: [arm, arm64, x64, x86]
Expand Down

0 comments on commit 675725b

Please sign in to comment.