use upstream/version-2-0 of Nim in CI (#6277)

This commit is contained in:
tersec 2024-05-09 00:22:28 +00:00 committed by GitHub
parent 137d969f1d
commit 1051c3c9c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ jobs:
cpu: amd64
- os: windows
cpu: amd64
branch: [~, upstream/version-1-6, v2.0.4]
branch: [~, upstream/version-1-6, upstream/version-2-0]
exclude:
- target:
os: macos
@ -49,7 +49,7 @@ jobs:
include:
- branch: upstream/version-1-6
branch-short: version-1-6
- branch: v2.0.4
- branch: upstream/version-2-0
branch-short: version-2-0
nimflags-extra: --mm:refc
- target:

2
ci/Jenkinsfile vendored
View File

@ -183,5 +183,5 @@ def getAgentLabel() {
}
def nimCommitForJob() {
return JOB_NAME.contains('nimv2') ? 'v2.0.4' : ''
return JOB_NAME.contains('nimv2') ? 'upstream/version-2-0' : ''
}