Skip to content

Commit

Permalink
ci: run only reactant for now (drop me)
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Mar 7, 2025
1 parent 6b1ea53 commit 82032a5
Show file tree
Hide file tree
Showing 8 changed files with 589 additions and 589 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
os:
- ubuntu-latest
test_group:
- "core_layers"
- "normalize_layers"
- "recurrent_layers"
- "autodiff"
- "misc"
# - "core_layers"
# - "normalize_layers"
# - "recurrent_layers"
# - "autodiff"
# - "misc"
- "reactant"
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -86,11 +86,11 @@ jobs:
fail-fast: false
matrix:
test_group:
- "core_layers"
- "normalize_layers"
- "recurrent_layers"
- "autodiff"
- "misc"
# - "core_layers"
# - "normalize_layers"
# - "recurrent_layers"
# - "autodiff"
# - "misc"
- "reactant"
steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/CIPreRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
os:
- ubuntu-latest
test_group:
- "core_layers"
- "normalize_layers"
- "recurrent_layers"
- "autodiff"
- "misc"
# - "core_layers"
# - "normalize_layers"
# - "recurrent_layers"
# - "autodiff"
# - "misc"
- "reactant"
steps:
- uses: actions/checkout@v4
Expand Down
150 changes: 75 additions & 75 deletions .github/workflows/CI_LuxCUDA.yml
Original file line number Diff line number Diff line change
@@ -1,79 +1,79 @@
name: CI (LuxCUDA)
on:
pull_request:
branches:
- main
paths:
- "lib/LuxCUDA/**"
- ".github/workflows/CI_LuxCUDA.yml"
push:
branches:
- main
# name: CI (LuxCUDA)
# on:
# pull_request:
# branches:
# - main
# paths:
# - "lib/LuxCUDA/**"
# - ".github/workflows/CI_LuxCUDA.yml"
# push:
# branches:
# - main

concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
# concurrency:
# # Skip intermediate builds: always.
# # Cancel intermediate builds: only if it is a pull request build.
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
- "1"
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
with:
project: "lib/LuxCUDA"
- name: "Run Tests"
run: |
import Pkg
Pkg.test(; coverage="user")
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0}
- uses: julia-actions/julia-processcoverage@v1
with:
directories: lib/LuxCUDA/src
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: false
# jobs:
# test:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# version:
# - "1"
# steps:
# - uses: actions/checkout@v4
# - uses: julia-actions/setup-julia@v2
# with:
# version: ${{ matrix.version }}
# - uses: julia-actions/cache@v2
# - uses: julia-actions/julia-buildpkg@v1
# with:
# project: "lib/LuxCUDA"
# - name: "Run Tests"
# run: |
# import Pkg
# Pkg.test(; coverage="user")
# shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0}
# - uses: julia-actions/julia-processcoverage@v1
# with:
# directories: lib/LuxCUDA/src
# - uses: codecov/codecov-action@v5
# with:
# files: lcov.info
# token: ${{ secrets.CODECOV_TOKEN }}
# verbose: true
# fail_ci_if_error: false

downgrade:
if: ${{ !contains(github.event.head_commit.message, '[skip tests]') && github.base_ref == github.event.repository.default_branch }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: "1.10"
- uses: julia-actions/julia-downgrade-compat@v1
- uses: julia-actions/julia-buildpkg@v1
with:
project: "lib/LuxCUDA"
- name: "Run Tests"
run: |
import Pkg
Pkg.test(; coverage="user")
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0}
- uses: julia-actions/julia-processcoverage@v1
with:
directories: lib/LuxCUDA/src
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: false
# downgrade:
# if: ${{ !contains(github.event.head_commit.message, '[skip tests]') && github.base_ref == github.event.repository.default_branch }}
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: julia-actions/setup-julia@v2
# with:
# version: "1.10"
# - uses: julia-actions/julia-downgrade-compat@v1
# - uses: julia-actions/julia-buildpkg@v1
# with:
# project: "lib/LuxCUDA"
# - name: "Run Tests"
# run: |
# import Pkg
# Pkg.test(; coverage="user")
# shell: julia --color=yes --code-coverage=user --depwarn=yes --project=lib/LuxCUDA {0}
# - uses: julia-actions/julia-processcoverage@v1
# with:
# directories: lib/LuxCUDA/src
# - uses: codecov/codecov-action@v5
# with:
# files: lcov.info
# token: ${{ secrets.CODECOV_TOKEN }}
# verbose: true
# fail_ci_if_error: false

env:
BACKEND_GROUP: "CPU"
# env:
# BACKEND_GROUP: "CPU"
Loading

0 comments on commit 82032a5

Please sign in to comment.