Skip to content

Commit 99617bc

Browse files
authored
feat(bun.sh): Add feature. (#17)
1 parent 983b605 commit 99617bc

File tree

4 files changed

+74
-0
lines changed

4 files changed

+74
-0
lines changed

.github/workflows/test.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- asdf-vm.com
1717
- atuin.sh
1818
- btop
19+
- bun.sh
1920
- deno.com
2021
- pkgx.sh
2122
- smallstep.com
@@ -44,6 +45,7 @@ jobs:
4445
- asdf-vm.com
4546
- atuin.sh
4647
- btop
48+
- bun.sh
4749
- deno.com
4850
- pkgx.sh
4951
- smallstep.com

src/bun.sh/devcontainer-feature.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "bun.sh",
3+
"id": "bun.sh",
4+
"version": "1.0.0",
5+
"description": "Install \"bun\" binary",
6+
"documentationURL": "https://github.com/devcontainer-community/devcontainer-features/tree/main/src/bun.sh",
7+
"options": {
8+
"version": {
9+
"type": "string",
10+
"default": "latest",
11+
"proposals": [
12+
"latest"
13+
],
14+
"description": "Currently unused."
15+
}
16+
}
17+
}

src/bun.sh/install.sh

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#!/bin/bash
2+
set -o errexit
3+
set -o pipefail
4+
set -o noclobber
5+
set -o nounset
6+
set -o allexport
7+
readonly name="bun"
8+
apt_get_update() {
9+
if [ "$(find /var/lib/apt/lists/* | wc -l)" = "0" ]; then
10+
echo "Running apt-get update..."
11+
apt-get update -y
12+
fi
13+
}
14+
apt_get_checkinstall() {
15+
if ! dpkg -s "$@" >/dev/null 2>&1; then
16+
apt_get_update
17+
DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends --no-install-suggests --option 'Debug::pkgProblemResolver=true' --option 'Debug::pkgAcquire::Worker=1' "$@"
18+
fi
19+
}
20+
apt_get_cleanup() {
21+
apt-get clean
22+
rm -rf /var/lib/apt/lists/*
23+
}
24+
echo_banner() {
25+
local text="$1"
26+
echo -e "\e[1m\e[97m\e[41m$text\e[0m"
27+
}
28+
install() {
29+
apt_get_checkinstall unzip curl ca-certificates
30+
su $_REMOTE_USER -c "curl -fsSL https://bun.sh/install | bash"
31+
apt_get_cleanup
32+
}
33+
echo_banner "devcontainer.community"
34+
echo "Installing $name..."
35+
install "$@"
36+
echo "(*) Done!"

test/bun.sh/test.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
4+
set -e
5+
6+
# Optional: Import test library bundled with the devcontainer CLI
7+
# See https://github.com/devcontainers/cli/blob/HEAD/docs/features/test.md#dev-container-features-test-lib
8+
# Provides the 'check' and 'reportResults' commands.
9+
source dev-container-features-test-lib
10+
11+
# Feature-specific tests
12+
# The 'check' command comes from the dev-container-features-test-lib. Syntax is...
13+
# check <LABEL> <cmd> [args...]
14+
15+
check "execute command" bash -c "bun --version"
16+
17+
# Report results
18+
# If any of the checks above exited with a non-zero exit code, the test will fail.
19+
reportResults

0 commit comments

Comments
 (0)