Skip to content

Commit 8a7769d

Browse files
Update Julia version in CI (#71)
Update the Julia version used in the CI to 1.10, and use 1.10 and current release candidate additionally in automated unit tests.
1 parent f686b13 commit 8a7769d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/BuildDeployDoc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: julia-actions/setup-julia@v1
2020
with:
21-
version: "1.9"
21+
version: "1.10"
2222
- name: Install dependencies
2323
run: |
2424
julia --project=docs/ add_QEDcore_dev.jl

.github/workflows/CompatHelper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Julia, but only if it is not already available in the PATH
1919
uses: julia-actions/setup-julia@v1
2020
with:
21-
version: '1'
21+
version: '1.10'
2222
arch: ${{ runner.arch }}
2323
if: steps.julia_in_path.outcome != 'success'
2424
- name: "Add the General registry via Git"

.github/workflows/formatter.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: install Julia
1010
uses: julia-actions/setup-julia@v1
1111
with:
12-
version: 1.9
12+
version: 1.10
1313
- name: Install Julia requirements
1414
run: julia --project=${GITHUB_WORKSPACE}/.formatting -e 'import Pkg; Pkg.instantiate()'
1515
- name: Check code style

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/docs/build/
1+
docs/build/
22

33
# File generated by Pkg, the package manager, based on a corresponding Project.toml
44
# It records a fixed state of all packages used by the project. As such, it should not be

.gitlab-ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ unit_tests_releases:
2727
extends: .untit_test_template
2828
parallel:
2929
matrix:
30-
- JULIA_VERSION: ["1.6", "1.7", "1.8", "1.9"]
30+
- JULIA_VERSION: ["1.6", "1.7", "1.8", "1.9", "1.10", "rc"]
3131
image: julia:$JULIA_VERSION
3232

3333
unit_tests_nightly:
@@ -62,7 +62,7 @@ unit_tests_nightly:
6262
allow_failure: true
6363

6464
generate_integration_tests:
65-
image: julia:1.9
65+
image: julia:1.10
6666
stage: generate_integration_test
6767
script:
6868
# extract package name
@@ -101,8 +101,8 @@ run_integration_tests:
101101
job: generate_integration_tests
102102
strategy: depend
103103

104-
verify-unit-test-deps_julia1.9:
105-
image: julia:1.9
104+
verify-unit-test-deps_julia1.10:
105+
image: julia:1.10
106106
stage: verify-unit-test-deps
107107
script:
108108
- apt update && apt install -y git

0 commit comments

Comments
 (0)