Skip to content

Commit 99d288f

Browse files
authored
ci: fix how downgrade ci works (#1612)
1 parent 36de0d9 commit 99d288f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/CommonCI.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ jobs:
6262
- uses: julia-actions/cache@v2
6363
with:
6464
cache-name: julia-cache;workflow=${{ inputs.julia_version }}-${{ inputs.os }}-${{ github.event_name }}-${{ inputs.project }}-${{ inputs.downgrade_testing }}-${{ inputs.local_dependencies }}-${{ inputs.local_test_dependencies }}-${{ inputs.test_args }}
65-
# - uses: julia-actions/julia-downgrade-compat@v2
66-
# FIXME: update to julia-actions/julia-downgrade-compat@v2 when it is fixed
67-
- uses: avik-pal/julia-downgrade-compat@patch-1
65+
66+
- uses: julia-actions/julia-downgrade-compat@v2.1
6867
if: ${{ inputs.downgrade_testing }}
6968
with:
69+
mode: forcedeps
7070
projects: ${{ inputs.project }}
7171
julia_version: ${{ inputs.julia_version }}
72-
skip: Pkg, TOML, Statistics, LinearAlgebra, Random, Serialization, Test, LuxCore, LuxLib, LuxTestUtils, MLDataDevices, WeightInitializers
72+
skip: Pkg, TOML, Statistics, LinearAlgebra, Random, Serialization, Markdown, Test, LuxCore, LuxLib, LuxTestUtils, MLDataDevices, WeightInitializers
7373

7474
# For 1.10 we need to manually develop the packages.
7575
- name: "Develop Dependencies"
@@ -92,6 +92,7 @@ jobs:
9292
- uses: julia-actions/julia-buildpkg@v1
9393
with:
9494
project: ${{ inputs.project }}
95+
precompile: true
9596
if: ${{ (inputs.julia_version != '1.10' && inputs.julia_version != 'lts') || inputs.local_dependencies == '' }}
9697

9798
- name: "Develop Test Dependencies"

lib/LuxCUDA/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LuxCUDA"
22
uuid = "d0bbae9a-e099-4d5b-a835-1c6931763bda"
33
authors = ["Avik Pal <avikpal@mit.edu> and contributors"]
4-
version = "0.3.4"
4+
version = "0.3.5"
55

66
[deps]
77
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
@@ -11,5 +11,5 @@ cuDNN = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd"
1111
[compat]
1212
CUDA = "5.8"
1313
Reexport = "1"
14-
cuDNN = "1.3"
14+
cuDNN = "1.4.3"
1515
julia = "1.10"

0 commit comments

Comments
 (0)