Skip to content

Commit

Permalink
Add bootstrap test on Alpine Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Nov 3, 2024
1 parent 8a1fb80 commit 7b77859
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 12 deletions.
35 changes: 23 additions & 12 deletions .github/workflows/test-bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,24 @@ jobs:
name: |
${{ matrix.platform.os_name }} - ${{ matrix.platform.script }} - ${{ ( matrix.tag == '' && 'no tag' ) || matrix.tag }}
runs-on: ${{ matrix.platform.os }}
container: ${{ matrix.platform.container }}
strategy:
fail-fast: false
matrix:
platform:
- os_name: Linux
os: ubuntu-latest
script: bootstrap-ubi.sh
- os_name: Alpine Linux (ash)
os: ubuntu-latest
container:
image: alpine:latest
env:
GITHUB_TOKEN: ${{ github.token }}
volumes:
- "${{ github.workspace }}:/workspace"
options: "--workdir /workspace"
script: bootstrap-ubi.sh
- os_name: macOS
os: macOS-latest
script: bootstrap-ubi.sh
Expand All @@ -42,22 +53,22 @@ jobs:
tag: v0.1.1
steps:
- uses: actions/checkout@v4
- name: Install curl and sudo on Alpine
shell: sh
run: |
apk update
apk add curl sudo
if: matrix.platform.container != null
- name: Run bootstrap script
shell: bash
shell: sh
run: |
set -e
mkdir -p "$HOME/bin"
UBI_DEBUG_BOOTSTRAP=1 TAG="${{ matrix.tag }}" ./bootstrap/${{ matrix.platform.script }}
if [ ! -x "$HOME/bin/ubi" ]; then
echo "Running ./bootstrap/${{ matrix.platform.script }} did not install ubi!"
exit 1
fi
"$HOME/bin/ubi" --project houseabsolute/precious --in "$HOME/bin"
if [ ! -x "$HOME/bin/precious" ]; then
echo "Running ubi did not install precious!"
exit 1
if [ $( id -u ) -eq 0 ]; then
adduser -D github
sudo -u github ./bootstrap/test/test-bootstrap.sh "${{ matrix.platform.script }}" "${{ matrix.tag }}"
else
./bootstrap/test/test-bootstrap.sh "${{ matrix.platform.script }}" "${{ matrix.tag }}"
fi
exit 0
Expand Down
24 changes: 24 additions & 0 deletions bootstrap/test/test-bootstrap.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/sh

set -e
set -x

SCRIPT="$1"
# shellcheck disable=SC2034 # This is used by the bootstrap scripts.
TAG="$2"

mkdir -p "$HOME/bin"

UBI_DEBUG_BOOTSTRAP=1 "./bootstrap/$SCRIPT"
if [ ! -x "$HOME/bin/ubi" ]; then
echo "Running ./bootstrap/$SCRIPT did not install ubi!"
exit 1
fi

"$HOME/bin/ubi" --project houseabsolute/precious --in "$HOME/bin"
if [ ! -x "$HOME/bin/precious" ]; then
echo "Running ubi did not install precious!"
exit 1
fi

exit 0

0 comments on commit 7b77859

Please sign in to comment.