Skip to content

Commit

Permalink
CI: add ubuntu 24, upgrade checkout action, limit make threads
Browse files Browse the repository at this point in the history
  • Loading branch information
mshabunin committed Oct 15, 2024
1 parent 0e8a2cc commit 0ab9f3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
matrix:
version: [11, 14, 17, 20, 23]
os: [
ubuntu-20.04,
ubuntu-22.04,
ubuntu-24.04,
windows-2022,
]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build Stage
shell: bash
Expand All @@ -33,7 +33,7 @@ jobs:
elif [ "$RUNNER_OS" == "Linux" ]; then
cmake -DENABLE_ADE_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{ matrix.version }} ..
make -j
make -j2
else
echo "$RUNNER_OS not supported"
Expand Down

0 comments on commit 0ab9f3a

Please sign in to comment.