forked from containerd/runwasi
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (49 loc) · 1.51 KB
/
action-test-smoke.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# yaml-language-server: $schema=https://json.schemastore.org/github-action.json
name: Run smoke tests
on:
workflow_call:
inputs:
os:
required: true
type: string
runtime:
required: true
type: string
permissions: read-all
jobs:
smoke-test:
name: smoke test on ${{ inputs.os }}
runs-on: ${{ inputs.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-env
- name: Download artifacts
uses: actions/download-artifact@master
with:
name: containerd-shim-${{ inputs.runtime }}-x86_64-linux-musl
path: dist
- name: Unpack artifats
shell: bash
run: |
mkdir -p dist/bin
tar -xzf dist/containerd-shim-${{ inputs.runtime }}-x86_64-linux-musl.tar.gz -C dist/bin
- name: Download test image
uses: actions/download-artifact@master
with:
name: test-img
path: dist
- name: Enable OTLP
run: |
sudo ./scripts/setup-jeager-and-otel.sh
- name: Run wasi-demo-app using ctr
timeout-minutes: 5
run: |
ls -alh dist
ls -alh dist/bin
sudo cp -f dist/bin/* /usr/local/bin
make pull-app
sudo ctr run --rm --runtime=io.containerd.${{ inputs.runtime }}.v1 ghcr.io/containerd/runwasi/wasi-demo-app:latest testwasm /wasi-demo-app.wasm echo 'hello'
- name: Verify Jaeger traces
run: |
sleep 5
sudo ./scripts/verify-jaeger-traces.sh