Skip to content

Commit

Permalink
Bump fusion 2.1
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Feb 17, 2023
1 parent 8f4884c commit f48ef5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import groovy.transform.CompileStatic
@CompileStatic
class FusionConfig {

final static public String DEFAULT_FUSION_AMD64_URL = 'https://fusionfs.seqera.io/releases/v2.0-amd64.json'
final static public String DEFAULT_FUSION_ARM64_URL = 'https://fusionfs.seqera.io/releases/v2.0-arm64.json'
final static public String DEFAULT_FUSION_AMD64_URL = 'https://fusionfs.seqera.io/releases/v2.1-amd64.json'
final static public String DEFAULT_FUSION_ARM64_URL = 'https://fusionfs.seqera.io/releases/v2.1-arm64.json'

final private Boolean enabled
final private String containerConfigUrl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -756,9 +756,9 @@ class WaveClientTest extends Specification {

where:
CONFIG | EXPECTED
[:] | 'https://fusionfs.seqera.io/releases/v2.0-amd64.json'
[wave:[containerPlatform: 'arm64']] | 'https://fusionfs.seqera.io/releases/v2.0-arm64.json'
[wave:[containerPlatform: 'linux/arm64']] | 'https://fusionfs.seqera.io/releases/v2.0-arm64.json'
[wave:[containerPlatform: 'linux/arm64/v8']] | 'https://fusionfs.seqera.io/releases/v2.0-arm64.json'
[:] | 'https://fusionfs.seqera.io/releases/v2.1-amd64.json'
[wave:[containerPlatform: 'arm64']] | 'https://fusionfs.seqera.io/releases/v2.1-arm64.json'
[wave:[containerPlatform: 'linux/arm64']] | 'https://fusionfs.seqera.io/releases/v2.1-arm64.json'
[wave:[containerPlatform: 'linux/arm64/v8']] | 'https://fusionfs.seqera.io/releases/v2.1-arm64.json'
}
}

0 comments on commit f48ef5b

Please sign in to comment.