Skip to content

Commit cc05f7f

Browse files
committed
Point StaticArrays and FiniteDifferences to their v2 compat forks
1 parent 4a727fc commit cc05f7f

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

.github/workflows/CI.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
- "pre" # Pre-release/nightly
3030
os:
3131
- ubuntu-latest
32-
- macOS-13 # Intel
32+
- macOS-26-intel # Intel
3333
- windows-latest
3434
arch:
3535
- x64
3636
- x86
3737
exclude:
3838
# Test 32-bit only on Linux
39-
- os: macOS-13
39+
- os: macOS-26-intel
4040
arch: x86
4141
- os: windows-latest
4242
arch: x86
@@ -50,8 +50,14 @@ jobs:
5050
with:
5151
version: ${{ matrix.version }}
5252
arch: ${{ matrix.arch }}
53-
- uses: julia-actions/cache@v2
53+
- uses: julia-actions/cache@v3
5454
- uses: julia-actions/julia-buildpkg@v1
55+
- run: |
56+
julia --project -e '
57+
using Pkg
58+
Pkg.add([PackageSpec(; url="https://github.com/JamesWrigley/StaticArrays.jl.git", rev="compat"),
59+
PackageSpec(; url="https://github.com/JamesWrigley/FiniteDifferences.jl.git", rev="compat")])
60+
'
5561
- uses: julia-actions/julia-runtest@v1
5662
- uses: julia-actions/julia-processcoverage@v1
5763
- uses: codecov/codecov-action@v5

.github/workflows/Downgrade.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ jobs:
2828
# if: ${{ matrix.version == '1.6' }}
2929
with:
3030
skip: Pkg,TOML
31+
- run: |
32+
julia --project -e '
33+
using Pkg
34+
Pkg.add([PackageSpec(; url="https://github.com/JamesWrigley/StaticArrays.jl.git", rev="compat"),
35+
PackageSpec(; url="https://github.com/JamesWrigley/FiniteDifferences.jl.git", rev="compat")])
36+
'
3137
- uses: julia-actions/julia-buildpkg@v1
3238
- uses: julia-actions/julia-runtest@v1
3339
with:

.github/workflows/JuliaNightly.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,18 @@ jobs:
2727
- uses: julia-actions/setup-julia@v2
2828
with:
2929
version: nightly
30-
- uses: julia-actions/cache@v2
30+
- uses: julia-actions/cache@v3
3131
- uses: julia-actions/julia-buildpkg@v1
32+
- run: |
33+
julia --project -e '
34+
using Pkg
35+
Pkg.add([PackageSpec(; url="https://github.com/JamesWrigley/StaticArrays.jl.git", rev="compat"),
36+
PackageSpec(; url="https://github.com/JamesWrigley/FiniteDifferences.jl.git", rev="compat")])
37+
'
3238
- uses: julia-actions/julia-runtest@v1
3339
- uses: julia-actions/julia-processcoverage@v1
3440
- uses: codecov/codecov-action@v5
3541
with:
3642
files: lcov.info
3743
token: ${{ secrets.CODECOV_TOKEN }}
38-
fail_ci_if_error: true
44+
fail_ci_if_error: true

0 commit comments

Comments
 (0)