Skip to content

Commit 34e1e76

Browse files
committed
ci: only run downstream tests(drop me)
1 parent f5b8d4c commit 34e1e76

6 files changed

Lines changed: 81 additions & 81 deletions

File tree

.github/workflows/CI.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,29 @@ concurrency:
2424
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
2525

2626
jobs:
27-
test:
28-
strategy:
29-
fail-fast: false
30-
matrix:
31-
version:
32-
- "1.10"
33-
- "1.11"
34-
os:
35-
- ubuntu-latest
36-
test_group:
37-
- "core_layers"
38-
- "normalize_layers"
39-
- "recurrent_layers"
40-
- "autodiff"
41-
- "misc"
42-
- "reactant"
43-
- "extras"
44-
uses: ./.github/workflows/CommonCI.yml
45-
with:
46-
julia_version: ${{ matrix.version }}
47-
project: "."
48-
test_args: "BACKEND_GROUP=CPU LUX_TEST_GROUP=${{ matrix.test_group }}"
49-
os: ${{ matrix.os }}
27+
# test:
28+
# strategy:
29+
# fail-fast: false
30+
# matrix:
31+
# version:
32+
# - "1.10"
33+
# - "1.11"
34+
# os:
35+
# - ubuntu-latest
36+
# test_group:
37+
# - "core_layers"
38+
# - "normalize_layers"
39+
# - "recurrent_layers"
40+
# - "autodiff"
41+
# - "misc"
42+
# - "reactant"
43+
# - "extras"
44+
# uses: ./.github/workflows/CommonCI.yml
45+
# with:
46+
# julia_version: ${{ matrix.version }}
47+
# project: "."
48+
# test_args: "BACKEND_GROUP=CPU LUX_TEST_GROUP=${{ matrix.test_group }}"
49+
# os: ${{ matrix.os }}
5050

5151
downgrade:
5252
strategy:

.github/workflows/CI_LuxCUDA.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ concurrency:
1616
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1717

1818
jobs:
19-
test:
20-
uses: ./.github/workflows/CommonCI.yml
21-
with:
22-
julia_version: "1.12"
23-
project: "lib/LuxCUDA"
19+
# test:
20+
# uses: ./.github/workflows/CommonCI.yml
21+
# with:
22+
# julia_version: "1.12"
23+
# project: "lib/LuxCUDA"
2424

2525
downgrade:
2626
uses: ./.github/workflows/CommonCI.yml

.github/workflows/CI_LuxCore.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ concurrency:
1717
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1818

1919
jobs:
20-
test:
21-
uses: ./.github/workflows/CommonCI.yml
22-
with:
23-
julia_version: "1.12"
24-
project: "lib/LuxCore"
20+
# test:
21+
# uses: ./.github/workflows/CommonCI.yml
22+
# with:
23+
# julia_version: "1.12"
24+
# project: "lib/LuxCore"
2525

2626
downgrade:
2727
uses: ./.github/workflows/CommonCI.yml

.github/workflows/CI_LuxLib.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -19,30 +19,30 @@ concurrency:
1919
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
2020

2121
jobs:
22-
test:
23-
strategy:
24-
fail-fast: false
25-
matrix:
26-
test_group:
27-
- "common"
28-
- "normalization"
29-
- "misc"
30-
blas_backend:
31-
- "default"
32-
loopvec:
33-
- "true"
34-
include:
35-
- test_group: "common"
36-
blas_backend: "default"
37-
loopvec: "false"
38-
- test_group: "misc"
39-
blas_backend: "default"
40-
loopvec: "false"
41-
uses: ./.github/workflows/CommonCI.yml
42-
with:
43-
julia_version: "1.11"
44-
project: "lib/LuxLib"
45-
test_args: "BACKEND_GROUP=cpu LUXLIB_TEST_GROUP=${{ matrix.test_group }} LUXLIB_BLAS_BACKEND=${{ matrix.blas_backend }} LUXLIB_LOAD_LOOPVEC=${{ matrix.loopvec }}"
22+
# test:
23+
# strategy:
24+
# fail-fast: false
25+
# matrix:
26+
# test_group:
27+
# - "common"
28+
# - "normalization"
29+
# - "misc"
30+
# blas_backend:
31+
# - "default"
32+
# loopvec:
33+
# - "true"
34+
# include:
35+
# - test_group: "common"
36+
# blas_backend: "default"
37+
# loopvec: "false"
38+
# - test_group: "misc"
39+
# blas_backend: "default"
40+
# loopvec: "false"
41+
# uses: ./.github/workflows/CommonCI.yml
42+
# with:
43+
# julia_version: "1.11"
44+
# project: "lib/LuxLib"
45+
# test_args: "BACKEND_GROUP=cpu LUXLIB_TEST_GROUP=${{ matrix.test_group }} LUXLIB_BLAS_BACKEND=${{ matrix.blas_backend }} LUXLIB_LOAD_LOOPVEC=${{ matrix.loopvec }}"
4646

4747
downgrade:
4848
strategy:

.github/workflows/CI_MLDataDevices.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,24 @@ concurrency:
1616
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1717

1818
jobs:
19-
test:
20-
strategy:
21-
fail-fast: false
22-
matrix:
23-
os:
24-
- ubuntu-latest
25-
- macos-latest
26-
- windows-latest
27-
group:
28-
- cpu
29-
- opencl
30-
- reactant
31-
uses: ./.github/workflows/CommonCI.yml
32-
with:
33-
julia_version: "1.12"
34-
project: "lib/MLDataDevices"
35-
test_args: "BACKEND_GROUP=${{ matrix.group }}"
36-
os: ${{ matrix.os }}
19+
# test:
20+
# strategy:
21+
# fail-fast: false
22+
# matrix:
23+
# os:
24+
# - ubuntu-latest
25+
# - macos-latest
26+
# - windows-latest
27+
# group:
28+
# - cpu
29+
# - opencl
30+
# - reactant
31+
# uses: ./.github/workflows/CommonCI.yml
32+
# with:
33+
# julia_version: "1.12"
34+
# project: "lib/MLDataDevices"
35+
# test_args: "BACKEND_GROUP=${{ matrix.group }}"
36+
# os: ${{ matrix.os }}
3737

3838
downgrade:
3939
strategy:

.github/workflows/CI_WeightInitializers.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ concurrency:
1616
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1717

1818
jobs:
19-
test:
20-
uses: ./.github/workflows/CommonCI.yml
21-
with:
22-
julia_version: "1.12"
23-
project: "lib/WeightInitializers"
24-
test_args: "BACKEND_GROUP=cpu"
19+
# test:
20+
# uses: ./.github/workflows/CommonCI.yml
21+
# with:
22+
# julia_version: "1.12"
23+
# project: "lib/WeightInitializers"
24+
# test_args: "BACKEND_GROUP=cpu"
2525

2626
downgrade:
2727
uses: ./.github/workflows/CommonCI.yml

0 commit comments

Comments
 (0)