From e55410dc80acd7d40f8a30007870d1ce7ce33034 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Fri, 28 May 2021 04:53:27 -0500 Subject: update badges, further split out actions by OS, add more Linux targets --- .github/workflows/linux_test.yml | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) (limited to '.github/workflows/linux_test.yml') diff --git a/.github/workflows/linux_test.yml b/.github/workflows/linux_test.yml index 42b3834..028c1a4 100644 --- a/.github/workflows/linux_test.yml +++ b/.github/workflows/linux_test.yml @@ -6,7 +6,7 @@ jobs: build-native: strategy: matrix: - os: [macos-latest, ubuntu-18.04] + os: [ubuntu-18.04, ubuntu-20.04] compiler: [clang, gcc] runs-on: ${{ matrix.os }} continue-on-error: false @@ -15,24 +15,6 @@ jobs: ARCH: native name: ${{ matrix.compiler }} - ${{ matrix.os }} steps: - - name: Install packages for macos - if: matrix.os == 'macos-latest' - run: brew install automake - uses: actions/checkout@v2 - name: Run CI script - run: ./scripts/travis - - build-other: - strategy: - matrix: - arch: [mingw32, mingw64, arm32, arm64] - runs-on: ubuntu-18.04 - continue-on-error: true - env: - CC: gcc - ARCH: ${{ matrix.arch }} - name: ${{ matrix.arch }} - steps: - - uses: actions/checkout@v2 - - name: Run CI script - run: ./scripts/travis + run: ./scripts/test -- cgit v1.2.3-55-g6feb