Skip to content

bump libcontainer to tip of tree #990

bump libcontainer to tip of tree

bump libcontainer to tip of tree #990

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
name: ${{ matrix.runtime }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
runtime: ["common"] # not required, but groups jobs
uses: ./.github/workflows/action-fmt.yml
with:
os: ${{ matrix.os }}
test-image:
name: ${{ matrix.runtime }}
strategy:
matrix:
runtime: ["common"] # not required, but groups jobs
uses: ./.github/workflows/action-test-image.yml
build-ubuntu:
name: ${{ matrix.runtime }}
strategy:
matrix:
os: ["ubuntu-20.04", "ubuntu-22.04"]
runtime: ["wasmtime", "wasmedge"]
uses: ./.github/workflows/action-build.yml
with:
os: ${{ matrix.os }}
runtime: ${{ matrix.runtime }}
build-windows:
name: ${{ matrix.runtime }}
strategy:
matrix:
os: ["windows-latest"]
runtime: ["wasmtime", "wasmedge"]
uses: ./.github/workflows/action-build.yml
with:
os: ${{ matrix.os }}
runtime: ${{ matrix.runtime }}
e2e-wasmtime:
name: ${{ matrix.runtime }}
needs: [build-ubuntu, test-image]
strategy:
matrix:
# 20.04 uses cgroupv1, 22.04 uses cgroupv2
os: ["ubuntu-20.04", "ubuntu-22.04"]
runtime: ["wasmtime"]
uses: ./.github/workflows/action-test-kind.yml
with:
os: ${{ matrix.os }}
runtime: ${{ matrix.runtime }}
e2e-k3s:
name: ${{ matrix.runtime }}
needs: [build-ubuntu, test-image]
strategy:
matrix:
os: ["ubuntu-20.04", "ubuntu-22.04"]
runtime: ["wasmedge"]
uses: ./.github/workflows/action-test-k3s.yml
with:
os: ${{ matrix.os }}
runtime: ${{ matrix.runtime }}