use Nim 2.0.6 (#6366)

This commit is contained in:
Miran 2024-06-18 03:54:15 +02:00 committed by GitHub
parent 3a0e037c7d
commit 597f47317f
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 cpu: amd64
- os: windows - os: windows
cpu: amd64 cpu: amd64
branch: [~, upstream/version-1-6, upstream/version-2-0] branch: [~, upstream/version-1-6, v2.0.6]
exclude: exclude:
- target: - target:
os: macos os: macos
@ -49,7 +49,7 @@ jobs:
include: include:
- branch: upstream/version-1-6 - branch: upstream/version-1-6
branch-short: version-1-6 branch-short: version-1-6
- branch: upstream/version-2-0 - branch: v2.0.6
branch-short: version-2-0 branch-short: version-2-0
nimflags-extra: --mm:refc nimflags-extra: --mm:refc
- target: - target:

2
ci/Jenkinsfile vendored
View File

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