|
1 |
| -name: CI (LuxCUDA) |
2 |
| -on: |
3 |
| - pull_request: |
4 |
| - branches: |
5 |
| - - main |
6 |
| - paths: |
7 |
| - - "lib/LuxCUDA/**" |
8 |
| - - ".github/workflows/CI_LuxCUDA.yml" |
9 |
| - push: |
10 |
| - branches: |
11 |
| - - main |
| 1 | +# name: CI (LuxCUDA) |
| 2 | +# on: |
| 3 | +# pull_request: |
| 4 | +# branches: |
| 5 | +# - main |
| 6 | +# paths: |
| 7 | +# - "lib/LuxCUDA/**" |
| 8 | +# - ".github/workflows/CI_LuxCUDA.yml" |
| 9 | +# push: |
| 10 | +# branches: |
| 11 | +# - main |
12 | 12 |
|
13 |
| -concurrency: |
14 |
| - # Skip intermediate builds: always. |
15 |
| - # Cancel intermediate builds: only if it is a pull request build. |
16 |
| - group: ${{ github.workflow }}-${{ github.ref }} |
17 |
| - cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} |
| 13 | +# concurrency: |
| 14 | +# # Skip intermediate builds: always. |
| 15 | +# # Cancel intermediate builds: only if it is a pull request build. |
| 16 | +# group: ${{ github.workflow }}-${{ github.ref }} |
| 17 | +# cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} |
18 | 18 |
|
19 |
| -jobs: |
20 |
| - test: |
21 |
| - runs-on: ubuntu-latest |
22 |
| - strategy: |
23 |
| - fail-fast: false |
24 |
| - matrix: |
25 |
| - version: |
26 |
| - - "1" |
27 |
| - steps: |
28 |
| - - uses: actions/checkout@v4 |
29 |
| - - uses: julia-actions/setup-julia@v2 |
30 |
| - with: |
31 |
| - version: ${{ matrix.version }} |
32 |
| - - uses: julia-actions/cache@v2 |
33 |
| - - uses: julia-actions/julia-buildpkg@v1 |
34 |
| - with: |
35 |
| - project: "lib/LuxCUDA" |
36 |
| - - name: "Run Tests" |
37 |
| - run: | |
38 |
| - import Pkg |
39 |
| - Pkg.test(; coverage="user") |
40 |
| - shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0} |
41 |
| - - uses: julia-actions/julia-processcoverage@v1 |
42 |
| - with: |
43 |
| - directories: lib/LuxCUDA/src |
44 |
| - - uses: codecov/codecov-action@v5 |
45 |
| - with: |
46 |
| - files: lcov.info |
47 |
| - token: ${{ secrets.CODECOV_TOKEN }} |
48 |
| - verbose: true |
49 |
| - fail_ci_if_error: false |
| 19 | +# jobs: |
| 20 | +# test: |
| 21 | +# runs-on: ubuntu-latest |
| 22 | +# strategy: |
| 23 | +# fail-fast: false |
| 24 | +# matrix: |
| 25 | +# version: |
| 26 | +# - "1" |
| 27 | +# steps: |
| 28 | +# - uses: actions/checkout@v4 |
| 29 | +# - uses: julia-actions/setup-julia@v2 |
| 30 | +# with: |
| 31 | +# version: ${{ matrix.version }} |
| 32 | +# - uses: julia-actions/cache@v2 |
| 33 | +# - uses: julia-actions/julia-buildpkg@v1 |
| 34 | +# with: |
| 35 | +# project: "lib/LuxCUDA" |
| 36 | +# - name: "Run Tests" |
| 37 | +# run: | |
| 38 | +# import Pkg |
| 39 | +# Pkg.test(; coverage="user") |
| 40 | +# shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0} |
| 41 | +# - uses: julia-actions/julia-processcoverage@v1 |
| 42 | +# with: |
| 43 | +# directories: lib/LuxCUDA/src |
| 44 | +# - uses: codecov/codecov-action@v5 |
| 45 | +# with: |
| 46 | +# files: lcov.info |
| 47 | +# token: ${{ secrets.CODECOV_TOKEN }} |
| 48 | +# verbose: true |
| 49 | +# fail_ci_if_error: false |
50 | 50 |
|
51 |
| - downgrade: |
52 |
| - if: ${{ !contains(github.event.head_commit.message, '[skip tests]') && github.base_ref == github.event.repository.default_branch }} |
53 |
| - runs-on: ubuntu-latest |
54 |
| - steps: |
55 |
| - - uses: actions/checkout@v4 |
56 |
| - - uses: julia-actions/setup-julia@v2 |
57 |
| - with: |
58 |
| - version: "1.10" |
59 |
| - - uses: julia-actions/julia-downgrade-compat@v1 |
60 |
| - - uses: julia-actions/julia-buildpkg@v1 |
61 |
| - with: |
62 |
| - project: "lib/LuxCUDA" |
63 |
| - - name: "Run Tests" |
64 |
| - run: | |
65 |
| - import Pkg |
66 |
| - Pkg.test(; coverage="user") |
67 |
| - shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0} |
68 |
| - - uses: julia-actions/julia-processcoverage@v1 |
69 |
| - with: |
70 |
| - directories: lib/LuxCUDA/src |
71 |
| - - uses: codecov/codecov-action@v5 |
72 |
| - with: |
73 |
| - files: lcov.info |
74 |
| - token: ${{ secrets.CODECOV_TOKEN }} |
75 |
| - verbose: true |
76 |
| - fail_ci_if_error: false |
| 51 | +# downgrade: |
| 52 | +# if: ${{ !contains(github.event.head_commit.message, '[skip tests]') && github.base_ref == github.event.repository.default_branch }} |
| 53 | +# runs-on: ubuntu-latest |
| 54 | +# steps: |
| 55 | +# - uses: actions/checkout@v4 |
| 56 | +# - uses: julia-actions/setup-julia@v2 |
| 57 | +# with: |
| 58 | +# version: "1.10" |
| 59 | +# - uses: julia-actions/julia-downgrade-compat@v1 |
| 60 | +# - uses: julia-actions/julia-buildpkg@v1 |
| 61 | +# with: |
| 62 | +# project: "lib/LuxCUDA" |
| 63 | +# - name: "Run Tests" |
| 64 | +# run: | |
| 65 | +# import Pkg |
| 66 | +# Pkg.test(; coverage="user") |
| 67 | +# shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0} |
| 68 | +# - uses: julia-actions/julia-processcoverage@v1 |
| 69 | +# with: |
| 70 | +# directories: lib/LuxCUDA/src |
| 71 | +# - uses: codecov/codecov-action@v5 |
| 72 | +# with: |
| 73 | +# files: lcov.info |
| 74 | +# token: ${{ secrets.CODECOV_TOKEN }} |
| 75 | +# verbose: true |
| 76 | +# fail_ci_if_error: false |
77 | 77 |
|
78 |
| -env: |
79 |
| - BACKEND_GROUP: "CPU" |
| 78 | +# env: |
| 79 | +# BACKEND_GROUP: "CPU" |
0 commit comments