diff --git a/README.md b/README.md index fede41d..73bc6e1 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Running `fuelup` inside the built container will install `fuelup` and the specif - beta-1 - beta-2 - beta-3 +- beta-4 - nightly ```jsonc diff --git a/src/fuelup/devcontainer-feature.json b/src/fuelup/devcontainer-feature.json index 53536ac..e50084d 100644 --- a/src/fuelup/devcontainer-feature.json +++ b/src/fuelup/devcontainer-feature.json @@ -11,6 +11,7 @@ "beta-1", "beta-2", "beta-3", + "beta-4", "nightly" ], "default": "latest", diff --git a/test/fuelup/beta-4.sh b/test/fuelup/beta-4.sh new file mode 100644 index 0000000..91e03b3 --- /dev/null +++ b/test/fuelup/beta-4.sh @@ -0,0 +1,11 @@ +#!/bin/bash +set -e + +source dev-container-features-test-lib + +# Feature-specific tests +check "execute command" fuelup --version | grep 'fuelup [0-9].' +check "execute command" forc --version | grep 'forc [0-9].' +check "execute command" fuelup default | grep 'beta-4' + +reportResults diff --git a/test/fuelup/scenarios.json b/test/fuelup/scenarios.json index eb74795..2718ff3 100644 --- a/test/fuelup/scenarios.json +++ b/test/fuelup/scenarios.json @@ -66,5 +66,14 @@ "toolchain": "beta-3" } } + }, + "beta-4": { + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "features": { + "ghcr.io/devcontainers/features/common-utils:1": {}, + "fuelup": { + "toolchain": "beta-4" + } + } } }