Skip to content

Commit

Permalink
CI: deduplicate Ubuntu jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilos authored Feb 5, 2024
1 parent d447b7e commit 348274b
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ permissions: read-all
jobs:

Ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
runner: [ ubuntu-20.04, ubuntu-latest ]
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: Build Ubuntu
Expand All @@ -20,16 +23,6 @@ jobs:
make
make check
Ubuntu-20-04:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Build Ubuntu
run: |
./configure --with-fastfloat --with-threaded
make
make check
macOS:
strategy:
matrix:
Expand Down

0 comments on commit 348274b

Please sign in to comment.