Skip to content

Disable pooling alloator in Spin shim #7

Disable pooling alloator in Spin shim

Disable pooling alloator in Spin shim #7

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
workspaces: |
"containerd-shim-* -> target"
- name: "Install dependencies"
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler libseccomp-dev
- name: fmt
run: |
make fmt
build-wasm-images:

Check failure on line 23 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 23, Col: 3): Error calling workflow 'kate-goldenring/containerd-wasm-shims/.github/workflows/docker-build-push.yaml@48f02568bbd4d1fa3e95635975a9e5420a5fc116'. The nested job 'build_and_push' is requesting 'contents: write, packages: write', but is only allowed 'contents: read, packages: read'.

Check failure on line 23 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 23, Col: 3): Error calling workflow 'kate-goldenring/containerd-wasm-shims/.github/workflows/docker-build-push.yaml@48f02568bbd4d1fa3e95635975a9e5420a5fc116'. The nested job 'build_and_push' is requesting 'contents: write, packages: write', but is only allowed 'contents: read, packages: read'.
uses: ./.github/workflows/docker-build-push.yaml
with:
test: true
build:
uses: ./.github/workflows/build.yaml
test:
needs: build
runs-on: ubuntu-latest
env:
ARCH: x86_64
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- name: Extract containerd-wasm-shims-v1-linux-${{ env.ARCH }}
run: |
mkdir -p ./bin
for f in containerd-wasm-shims-*-*-linux-${{ env.ARCH }}/containerd-wasm-shims-*-*-linux-${{ env.ARCH }}.tar.gz
do tar -xzf "$f" -C ./bin
done
- name: install k3d
run: make install-k3d
working-directory: ./deployments/k3d
- name: run integration tests
run: BIN_DIR="./bin" make integration-tests
- name: clean up k3d
if: always()
run: make test/clean