Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

ci: run on 1.10 and 1 #171

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 16 additions & 21 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,14 @@ jobs:
name: Julia ${{ matrix.version }} - ${{ matrix.test_group }} - ${{ matrix.os }} - ${{ matrix.blas_backend }}
if: ${{ !contains(github.event.head_commit.message, '[skip tests]') }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
timeout-minutes: 240
strategy:
fail-fast: false
matrix:
version:
- "1"
os:
- ubuntu-latest
- macos-latest
- windows-latest
test_group:
- "conv"
- "dense"
Expand All @@ -46,9 +44,6 @@ jobs:
- "others"
blas_backend:
- "default"
exclude:
- os: macos-latest
test_group: "conv" # Never terminates
include:
- os: ubuntu-latest
test_group: "dense"
Expand All @@ -62,6 +57,18 @@ jobs:
test_group: "dense"
blas_backend: "appleaccelerate"
version: "1"
- os: "ubuntu-latest"
test_group: "all"
blas_backend: "default"
version: "min"
- os: "macos-latest"
test_group: "all"
blas_backend: "default"
version: "1"
- os: "windows-latest"
test_group: "all"
blas_backend: "default"
version: "1"
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down Expand Up @@ -96,7 +103,7 @@ jobs:
name: Downstream ${{ matrix.package.repo }}/${{ matrix.package.group }}
if: ${{ !contains(github.event.head_commit.message, '[skip tests]') && github.base_ref == github.event.repository.default_branch }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
timeout-minutes: 240
env:
GROUP: ${{ matrix.package.group }}
LUX_TEST_GROUP: ${{ matrix.package.group }}
Expand Down Expand Up @@ -158,22 +165,12 @@ jobs:
if: ${{ !contains(github.event.head_commit.message, '[skip tests]') && github.base_ref == github.event.repository.default_branch }}
name: Downgrade Julia ${{ matrix.version }} - ${{ matrix.test_group }}
runs-on: ubuntu-latest
timeout-minutes: 60
timeout-minutes: 240
strategy:
fail-fast: false
matrix:
version:
- "1"
test_group:
- "conv"
- "dense"
- "batch_norm"
- "group_norm"
- "instance_norm"
- "layer_norm"
- "other_ops"
- "batched_ops"
- "others"
- "1.10"
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand All @@ -182,8 +179,6 @@ jobs:
- uses: julia-actions/julia-downgrade-compat@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
LUXLIB_TEST_GROUP: ${{ matrix.test_group }}
- uses: julia-actions/julia-processcoverage@v1
with:
directories: src,ext
Expand Down
Loading