Skip to content

Commit 5f5183c

Browse files
committed
test
1 parent 02b28c4 commit 5f5183c

File tree

4 files changed

+26
-14
lines changed

4 files changed

+26
-14
lines changed

.github/workflows/perf.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
on:
22
workflow_call:
33

4+
env:
5+
DOCKER_IMAGE: "ghcr.io/learning-process/ppc-ubuntu:1.1"
6+
47
jobs:
58
ubuntu-gcc-build-perf-stats:
69
runs-on: ubuntu-24.04
710
container:
8-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
11+
image: ${{ env.DOCKER_IMAGE }}
912
credentials:
1013
username: ${{ github.actor }}
1114
password: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pre-commit.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ on:
55
pull_request:
66
workflow_call:
77

8+
env:
9+
DOCKER_IMAGE: "ghcr.io/learning-process/ppc-ubuntu:1.1"
10+
811
jobs:
912
pre-commit:
1013
runs-on: ubuntu-24.04
1114
container:
12-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
15+
image: ${{ env.DOCKER_IMAGE }}
1316
credentials:
1417
username: ${{ github.actor }}
1518
password: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/static-analysis-pr.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
- '**/.clang-tidy'
1313
- '.github/workflows/static-analysis-pr.yml'
1414

15+
env:
16+
DOCKER_IMAGE: "ghcr.io/learning-process/ppc-ubuntu:1.1"
17+
1518
concurrency:
1619
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
1720
cancel-in-progress: >-
@@ -23,7 +26,7 @@ jobs:
2326
clang-tidy:
2427
runs-on: ubuntu-24.04
2528
container:
26-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
29+
image: ${{ env.DOCKER_IMAGE }}
2730
credentials:
2831
username: ${{ github.actor }}
2932
password: ${{ secrets.GITHUB_TOKEN }}
@@ -71,7 +74,7 @@ jobs:
7174
- clang-tidy
7275
runs-on: ubuntu-24.04
7376
container:
74-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
77+
image: ${{ env.DOCKER_IMAGE }}
7578
credentials:
7679
username: ${{ github.actor }}
7780
password: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ubuntu.yml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
on:
22
workflow_call:
33

4+
env:
5+
DOCKER_IMAGE: "ghcr.io/learning-process/ppc-ubuntu:1.1"
6+
47
jobs:
58
gcc-build:
69
runs-on: ${{ matrix.os }}
710
container:
8-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
11+
image: ${{ env.DOCKER_IMAGE }}
912
credentials:
1013
username: ${{ github.actor }}
1114
password: ${{ secrets.GITHUB_TOKEN }}
@@ -60,7 +63,7 @@ jobs:
6063
- gcc-build
6164
runs-on: ${{ matrix.os }}
6265
container:
63-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
66+
image: ${{ env.DOCKER_IMAGE }}
6467
credentials:
6568
username: ${{ github.actor }}
6669
password: ${{ secrets.GITHUB_TOKEN }}
@@ -92,7 +95,7 @@ jobs:
9295
- gcc-test
9396
runs-on: ${{ matrix.os }}
9497
container:
95-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
98+
image: ${{ env.DOCKER_IMAGE }}
9699
credentials:
97100
username: ${{ github.actor }}
98101
password: ${{ secrets.GITHUB_TOKEN }}
@@ -116,7 +119,7 @@ jobs:
116119
clang-build:
117120
runs-on: ${{ matrix.os }}
118121
container:
119-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
122+
image: ${{ env.DOCKER_IMAGE }}
120123
credentials:
121124
username: ${{ github.actor }}
122125
password: ${{ secrets.GITHUB_TOKEN }}
@@ -162,7 +165,7 @@ jobs:
162165
- clang-build
163166
runs-on: ${{ matrix.os }}
164167
container:
165-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
168+
image: ${{ env.DOCKER_IMAGE }}
166169
credentials:
167170
username: ${{ github.actor }}
168171
password: ${{ secrets.GITHUB_TOKEN }}
@@ -194,7 +197,7 @@ jobs:
194197
- clang-test
195198
runs-on: ${{ matrix.os }}
196199
container:
197-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
200+
image: ${{ env.DOCKER_IMAGE }}
198201
credentials:
199202
username: ${{ github.actor }}
200203
password: ${{ secrets.GITHUB_TOKEN }}
@@ -220,7 +223,7 @@ jobs:
220223
- clang-build
221224
runs-on: ${{ matrix.os }}
222225
container:
223-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
226+
image: ${{ env.DOCKER_IMAGE }}
224227
credentials:
225228
username: ${{ github.actor }}
226229
password: ${{ secrets.GITHUB_TOKEN }}
@@ -268,7 +271,7 @@ jobs:
268271
- clang-sanitizer-build
269272
runs-on: ${{ matrix.os }}
270273
container:
271-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
274+
image: ${{ env.DOCKER_IMAGE }}
272275
credentials:
273276
username: ${{ github.actor }}
274277
password: ${{ secrets.GITHUB_TOKEN }}
@@ -306,7 +309,7 @@ jobs:
306309
- clang-sanitizer-test
307310
runs-on: ${{ matrix.os }}
308311
container:
309-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
312+
image: ${{ env.DOCKER_IMAGE }}
310313
credentials:
311314
username: ${{ github.actor }}
312315
password: ${{ secrets.GITHUB_TOKEN }}
@@ -334,7 +337,7 @@ jobs:
334337
- clang-test-extended
335338
runs-on: ubuntu-24.04
336339
container:
337-
image: ghcr.io/learning-process/ppc-ubuntu:1.1
340+
image: ${{ env.DOCKER_IMAGE }}
338341
credentials:
339342
username: ${{ github.actor }}
340343
password: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)