Skip to content

Commit 673afe6

Browse files
committed
update github workflows
1 parent 7f1a843 commit 673afe6

12 files changed

+15
-14
lines changed

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: 'Dependency Review'
2+
23
on: [pull_request]
34

45
permissions:

.github/workflows/lint_and_format_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
- uses: chartboost/ruff-action@e18ae971ccee1b2d7bbef113930f00c670b78da4 # v1.0.0
3636
name: Lint with Ruff
3737
with:
38-
version: 0.4.4
38+
version: 0.6.0

.github/workflows/macos_install.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,13 @@ jobs:
2626
strategy:
2727
matrix:
2828
include:
29-
- {shared: ON}
30-
- {shared: OFF}
29+
shared: [ON, OFF]
3130
steps:
3231
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
3332
- name: Prepare
3433
run: cmake -DBUILD_SHARED_LIBS=${{matrix.shared}} -DCMAKE_INSTALL_PREFIX:PATH=destination -B build
3534
- name: Build
36-
run: cmake --build build -j=2
35+
run: cmake --build build -j=3
3736
- name: Install
3837
run: cmake --install build
3938
- name: Prepare test package

.github/workflows/ubuntu-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
env:
3636
CXX: ${{matrix.cxx}}
3737
- name: Build
38-
run: cmake --build build -j=2
38+
run: cmake --build build -j=4
3939
- name: Test
4040
run: ctest --output-on-failure --test-dir build

.github/workflows/ubuntu-s390x.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,9 @@ jobs:
3434
githubToken: ${{ github.token }}
3535
install: |
3636
apt-get update -q -y
37-
apt-get install -y cmake make g++ git
38-
apt-get install -y ninja-build
37+
apt-get install -y cmake make g++ git ninja-build
3938
run: |
4039
cmake -DCMAKE_BUILD_TYPE=Release -G Ninja -B build
4140
rm -r -f dependencies
42-
cmake --build build -j=2
41+
cmake --build build -j=4
4342
ctest --output-on-failure --test-dir build

.github/workflows/ubuntu-sanitized.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
env:
3636
CXX: g++-12
3737
- name: Build
38-
run: cmake --build build -j=2
38+
run: cmake --build build -j=4
3939
- name: Test
4040
run: ctest --output-on-failure --test-dir build

.github/workflows/ubuntu-undef.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
env:
3636
CXX: g++-12
3737
- name: Build
38-
run: cmake --build build -j=2
38+
run: cmake --build build -j=4
3939
- name: Test
4040
run: ctest --output-on-failure --test-dir build

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
CXX: ${{matrix.cxx}}
3838
- name: Build
39-
run: cmake --build build -j=2
39+
run: cmake --build build -j=4
4040
- name: Test
4141
run: ctest --output-on-failure --test-dir build
4242
- name: Run default benchmark

.github/workflows/ubuntu_install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Prepare
3535
run: cmake -G Ninja -DBUILD_SHARED_LIBS=${{matrix.shared}} -DCMAKE_INSTALL_PREFIX:PATH=destination -B build
3636
- name: Build
37-
run: cmake --build build -j=2
37+
run: cmake --build build -j=4
3838
- name: Install
3939
run: cmake --install build
4040
- name: Prepare test package

.github/workflows/ubuntu_pedantic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ jobs:
3636
CXX: g++-12
3737
CXXFLAGS: -Werror
3838
- name: Build
39-
run: cmake --build build -j=2
39+
run: cmake --build build -j=4
4040
- name: Test
4141
run: ctest --output-on-failure --test-dir build

0 commit comments

Comments
 (0)