Skip to content

Commit c3bae77

Browse files
committed
Re-enable unrelated CI & benchmarks
Signed-off-by: Brendan Moran <brendan.moran@arm.com>
1 parent 8cfa721 commit c3bae77

7 files changed

Lines changed: 129 additions & 155 deletions

File tree

.github/workflows/all.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@ jobs:
2222
secrets: inherit
2323
lint-markdown:
2424
name: Lint Markdown
25-
if: ${{ false }}
2625
permissions:
2726
contents: 'read'
2827
id-token: 'write'
2928
uses: ./.github/workflows/lint_markdown.yml
3029
nix:
3130
name: Nix
32-
if: ${{ false }}
3331
permissions:
3432
actions: 'write'
3533
contents: 'read'
@@ -38,15 +36,13 @@ jobs:
3836
secrets: inherit
3937
riscv:
4038
name: RISC-V
41-
if: ${{ false }}
4239
permissions:
4340
contents: 'read'
4441
id-token: 'write'
4542
needs: [ base ]
4643
uses: ./.github/workflows/riscv.yml
4744
ci:
4845
name: Extended
49-
if: ${{ false }}
5046
permissions:
5147
contents: 'read'
5248
id-token: 'write'
@@ -55,7 +51,6 @@ jobs:
5551
secrets: inherit
5652
cbmc:
5753
name: CBMC
58-
if: ${{ false }}
5954
permissions:
6055
contents: 'read'
6156
id-token: 'write'
@@ -65,7 +60,6 @@ jobs:
6560
secrets: inherit
6661
oqs_integration:
6762
name: libOQS
68-
if: ${{ false }}
6963
permissions:
7064
contents: 'read'
7165
id-token: 'write'
@@ -74,7 +68,6 @@ jobs:
7468
secrets: inherit
7569
pavona_integration:
7670
name: Pavona
77-
if: ${{ false }}
7871
permissions:
7972
contents: 'read'
8073
id-token: 'write'
@@ -83,7 +76,6 @@ jobs:
8376
secrets: inherit
8477
awslc_integration:
8578
name: AWS-LC
86-
if: ${{ false }}
8779
permissions:
8880
contents: 'read'
8981
id-token: 'write'
@@ -94,7 +86,6 @@ jobs:
9486
secrets: inherit
9587
ct-test:
9688
name: Constant-time
97-
if: ${{ false }}
9889
permissions:
9990
contents: 'read'
10091
id-token: 'write'
@@ -103,7 +94,6 @@ jobs:
10394
secrets: inherit
10495
slothy:
10596
name: SLOTHY
106-
if: ${{ false }}
10797
permissions:
10898
contents: 'read'
10999
id-token: 'write'

.github/workflows/base.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
run: |
3939
./scripts/tests func --check-namespace
4040
quickcheck:
41-
if: ${{ false }}
4241
strategy:
4342
fail-fast: false
4443
matrix:
@@ -73,7 +72,6 @@ jobs:
7372
run: |
7473
./scripts/tests func --check-namespace
7574
quickcheck-acvp:
76-
if: ${{ false }}
7775
strategy:
7876
fail-fast: false
7977
matrix:
@@ -99,7 +97,6 @@ jobs:
9997
run: |
10098
./scripts/tests acvp --version ${{ matrix.acvp-version }}
10199
quickcheck_bench:
102-
if: ${{ false }}
103100
strategy:
104101
fail-fast: false
105102
matrix:
@@ -147,7 +144,6 @@ jobs:
147144
make clean
148145
./scripts/tests bench --components -c NO
149146
quickcheck-c90:
150-
if: ${{ false }}
151147
strategy:
152148
fail-fast: false
153149
matrix:
@@ -184,7 +180,6 @@ jobs:
184180
run: |
185181
./scripts/tests bench --components -c NO --cflags="-std=c90"
186182
quickcheck-windows:
187-
if: ${{ false }}
188183
strategy:
189184
fail-fast: false
190185
matrix:
@@ -201,7 +196,6 @@ jobs:
201196
cl
202197
nmake /f ./Makefile.Microsoft_nmake quickcheck
203198
quickcheck-windows-mingw-w64:
204-
if: ${{ false }}
205199
strategy:
206200
fail-fast: false
207201
matrix:
@@ -222,7 +216,6 @@ jobs:
222216
CC=gcc OPT=1 make quickcheck
223217
quickcheck-lib:
224218
name: Quickcheck lib
225-
if: ${{ false }}
226219
strategy:
227220
matrix:
228221
system: [macos-latest, macos-15-intel, ubuntu-latest, ubuntu-24.04-arm]
@@ -234,7 +227,6 @@ jobs:
234227
make lib
235228
examples:
236229
name: Examples
237-
if: ${{ false }}
238230
strategy:
239231
matrix:
240232
system: [macos-latest, macos-15-intel, ubuntu-latest, ubuntu-24.04-arm]
@@ -275,7 +267,6 @@ jobs:
275267
run: |
276268
CFLAGS="-O0" make run -C examples/multilevel_build_native
277269
simpasm:
278-
if: ${{ false }}
279270
strategy:
280271
fail-fast: false
281272
matrix:
@@ -304,7 +295,6 @@ jobs:
304295
OPT=1 make quickcheck
305296
x86_64_intel_syntax:
306297
name: x86_64 Intel syntax
307-
if: ${{ false }}
308298
runs-on: ubuntu-latest
309299
steps:
310300
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -318,7 +308,6 @@ jobs:
318308
make clean
319309
./scripts/tests all
320310
scan-build:
321-
if: ${{ false }}
322311
strategy:
323312
fail-fast: false
324313
matrix:
@@ -342,7 +331,6 @@ jobs:
342331
make clean >/dev/null
343332
scan-build --status-bugs make quickcheck OPT=1
344333
symlink-check:
345-
if: ${{ false }}
346334
runs-on: ubuntu-latest
347335
steps:
348336
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

0 commit comments

Comments
 (0)