Skip to content

Commit b2b32bc

Browse files
authored
Merge pull request #12 from FuelLabs/sophie/beta4
Support for beta-4
2 parents d20fa27 + 593c4f8 commit b2b32bc

4 files changed

Lines changed: 22 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Running `fuelup` inside the built container will install `fuelup` and the specif
1212
- beta-1
1313
- beta-2
1414
- beta-3
15+
- beta-4
1516
- nightly
1617

1718
```jsonc

src/fuelup/devcontainer-feature.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"beta-1",
1212
"beta-2",
1313
"beta-3",
14+
"beta-4",
1415
"nightly"
1516
],
1617
"default": "latest",

test/fuelup/beta-4.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
set -e
3+
4+
source dev-container-features-test-lib
5+
6+
# Feature-specific tests
7+
check "execute command" fuelup --version | grep 'fuelup [0-9].'
8+
check "execute command" forc --version | grep 'forc [0-9].'
9+
check "execute command" fuelup default | grep 'beta-4'
10+
11+
reportResults

test/fuelup/scenarios.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,14 @@
6666
"toolchain": "beta-3"
6767
}
6868
}
69+
},
70+
"beta-4": {
71+
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
72+
"features": {
73+
"ghcr.io/devcontainers/features/common-utils:1": {},
74+
"fuelup": {
75+
"toolchain": "beta-4"
76+
}
77+
}
6978
}
7079
}

0 commit comments

Comments
 (0)