Skip to content

Commit

Permalink
Update CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
hvdijk committed May 20, 2024
1 parent b577fdc commit 5b3041d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: CI
on:
push:
branches: [ main ]
branches: [main]
jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-11]
os: [ubuntu-22.04, ubuntu-24.04, macos-14]
compiler: [gcc, clang]
configure: [--disable-locale, --enable-locale]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Touch files
run: git ls-files | xargs touch -r configure
- name: Configure
run: ./configure ${{ matrix.configure }} CC=${{ matrix.compiler }}
- name: Make
run: make
scan:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Install Coverity Scan
run: |
Expand All @@ -29,7 +29,7 @@ jobs:
env:
COVERITY_TOKEN: ${{ secrets.COVERITY_TOKEN }}
COVERITY_PROJECT: ${{ secrets.COVERITY_PROJECT }}
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Touch files
run: git ls-files | xargs touch -r configure
- name: Configure
Expand Down

0 comments on commit 5b3041d

Please sign in to comment.