fix locking in other func, and use the right base maps #478
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: [push, workflow_dispatch] | |
jobs: | |
test: | |
name: ${{ matrix.module }} | |
strategy: | |
fail-fast: false | |
matrix: | |
module: ["awsutil", | |
"base62", | |
"configutil", | |
"fileutil", | |
"gatedwriter", | |
"httputil", | |
"kv-builder", | |
"listenerutil", | |
"mlock", | |
"nonceutil", | |
"parseutil", | |
"password", | |
"plugincontainer", | |
"pluginutil", | |
"random", | |
"reloadutil", | |
"strutil", | |
"temperror", | |
"tlsutil", | |
"toggledlogger"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: Set up Go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
with: | |
go-version-file: ${{ matrix.module }}/go.mod | |
cache-dependency-path: ${{ matrix.module }}/go.sum | |
- name: Build | |
run: cd ${{ matrix.module }} && go build ./... | |
- name: JS/WASM build | |
run: cd ${{ matrix.module }} && GOOS=js GOARCH=wasm go build -o test.wasm . | |
- name: Install gVisor | |
if: ${{ matrix.module == 'plugincontainer' }} | |
run: | | |
( | |
set -e | |
ARCH="$(uname -m)" | |
URL="https://storage.googleapis.com/gvisor/releases/release/20240311/${ARCH}" | |
wget --quiet "${URL}/runsc" "${URL}/runsc.sha512" \ | |
"${URL}/containerd-shim-runsc-v1" "${URL}/containerd-shim-runsc-v1.sha512" | |
sha512sum -c runsc.sha512 \ | |
-c containerd-shim-runsc-v1.sha512 | |
rm -f -- *.sha512 | |
chmod a+rx runsc containerd-shim-runsc-v1 | |
sudo mv runsc containerd-shim-runsc-v1 /usr/local/bin | |
) | |
sudo tee /etc/docker/daemon.json <<EOF | |
{ | |
"runtimes": { | |
"runsc": { | |
"path": "/usr/local/bin/runsc", | |
"runtimeArgs": [ | |
"--host-uds=create" | |
] | |
} | |
} | |
} | |
EOF | |
sudo systemctl reload docker | |
- name: Install rootless docker | |
if: ${{ matrix.module == 'plugincontainer' }} | |
run: | | |
sudo apt-get install -y uidmap dbus-user-session | |
export FORCE_ROOTLESS_INSTALL=1 | |
curl -fsSL https://get.docker.com/rootless | sh | |
mkdir -p ~/.config/docker/ | |
tee ~/.config/docker/daemon.json <<EOF | |
{ | |
"runtimes": { | |
"runsc": { | |
"path": "/usr/local/bin/runsc", | |
"runtimeArgs": [ | |
"--host-uds=create", | |
"--ignore-cgroups" | |
] | |
} | |
} | |
} | |
EOF | |
export PATH="$HOME/bin:$PATH" | |
systemctl --user restart docker | |
- name: Test | |
run: cd ${{ matrix.module }} && go test ./... | |
# Verify that every module folder is mentioned in this workflow file. | |
verify-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- run: | | |
if ! find * -name go.mod -print0 | xargs -0 dirname | xargs -I % grep % .github/workflows/go.yml > /dev/null; then | |
echo "Ensure every submodule is included in the matrix 'module' input in go.yml in the github workflows folder" | |
exit 1 | |
fi |