Skip to content

Commit 3e701f3

Browse files
IshaanDesaiMakisH
andauthored
Update Julia versions (#76)
* Update Julia versions * Remove unintended bindings version bump * Revert to 1.10 as compatible version in Project.toml * Use keys as version numbers instead of the actual numbers * Remove libcurl from LD_PRELOAD * Clarify which versions are tested in the CI * Rephrasing in the README Co-authored-by: Gerasimos Chourdakis <gerasimos.chourdakis@ipvs.uni-stuttgart.de> --------- Co-authored-by: Gerasimos Chourdakis <gerasimos.chourdakis@ipvs.uni-stuttgart.de>
1 parent 155b712 commit 3e701f3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
julia-version: ["1.8.0", "1.9.0", "1.10.0"]
18+
julia-version: ["1", "lts", "pre"]
1919
julia-arch: [x64, x86]
2020

2121
steps:
2222
- name: Install Julia
23-
uses: julia-actions/setup-julia@v1
23+
uses: julia-actions/setup-julia@v2
2424
with:
2525
version: ${{ matrix.julia-version }}
2626

@@ -36,12 +36,12 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
julia-version: ["1.8.0", "1.9.0", "1.10.0"]
39+
julia-version: ["1", "lts", "pre"]
4040
julia-arch: [x64, x86]
4141

4242
steps:
4343
- name: Install Julia
44-
uses: julia-actions/setup-julia@v1
44+
uses: julia-actions/setup-julia@v2
4545
with:
4646
version: ${{ matrix.julia-version }}
4747

@@ -58,7 +58,7 @@ jobs:
5858
- name: Add libprecice to LD_LIBRARY_PATH and adjust LD_PRELOAD
5959
run: |
6060
echo "LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV
61-
echo "LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6:/usr/lib/x86_64-linux-gnu/libcurl.so.4" >> $GITHUB_ENV
61+
echo "LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6" >> $GITHUB_ENV
6262
6363
- name: Run tests
6464
uses: julia-actions/julia-runtest@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,6 @@ This package works with official Julia binaries listed below. See the [Platform
156156

157157
## Supported versions
158158

159-
The package is actively tested for Julia versions `1.8.0`, `1.9.0`, and `1.10.0`. Julia versions prior to `1.6.0` are not supported.
159+
In the CI, we test the package for the latest `v1`, the latest LTS, and the latest prerelease versions of Julia.
160160

161161
[Unofficial Julia binaries](https://julialang.org/downloads/platform/#platform_specific_instructions_for_unofficial_binaries) may not be compatible.

0 commit comments

Comments
 (0)