Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/govulncheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: govulncheck
uses: golang/govulncheck-action@v1
uses: golang/govulncheck-action@032d45514ae346b1db93c04b0c90b841c370344f # v1.1.0
with:
go-version-file: go.mod
go-package: ./...
14 changes: 10 additions & 4 deletions .github/workflows/pr-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,15 @@ jobs:
- name: Create cluster
run: hack/create-kind-cluster.sh
- name: Install Agent Substrate
run: hack/install-ate-kind.sh --deploy-ate-system --ateapi-client-auth=${{ matrix.ateapi-client-auth }}
env:
CLIENT_AUTH: ${{ matrix.ateapi-client-auth }}
run: hack/install-ate-kind.sh --deploy-ate-system --ateapi-client-auth="$CLIENT_AUTH"
- name: Deploy micro-VM counter demo
# Stages the (cached) assets into the cluster's rustfs and applies the
# counter-microvm demo onto the control plane installed above.
run: hack/run-microvm-demo-kind.sh --ateapi-client-auth=${{ matrix.ateapi-client-auth }}
env:
CLIENT_AUTH: ${{ matrix.ateapi-client-auth }}
run: hack/run-microvm-demo-kind.sh --ateapi-client-auth="$CLIENT_AUTH"
- name: Deploy gVisor counter demo
run: hack/install-ate-kind.sh --deploy-demo-counter
- name: Wait for micro-VM golden snapshot
Expand Down Expand Up @@ -134,8 +138,10 @@ jobs:
if: always()
steps:
- name: Check E2E matrix
env:
MATRIX_RESULT: ${{ needs.e2e-test-matrix.result }}
run: |
if [ "${{ needs.e2e-test-matrix.result }}" != "success" ]; then
echo "e2e-test-matrix result: ${{ needs.e2e-test-matrix.result }}"
if [ "$MATRIX_RESULT" != "success" ]; then
echo "e2e-test-matrix result: $MATRIX_RESULT"
exit 1
fi
Loading