PEM to vkey for MTC #1835
Workflow file for this run
This file contains hidden or 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: Integration Test | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| posix-tlog-tiles-api: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Start Docker services (tessera-conformance-posix) | |
| run: docker compose -f ./cmd/conformance/posix/docker/compose.yaml up --build --detach | |
| - name: Run integration test | |
| run: go test -v -race ./integration/. --run_integration_test=true --log_url="file:///tmp/tessera-posix-log" --write_log_url="http://localhost:2025" --log_public_key="example.com/log/testdata+33d7b496+AeHTu4Q3hEIMHNqc6fASMsq3rKNx280NI+oO5xCFkkSx" | |
| - name: What's in the box? | |
| if: ${{ always() }} | |
| run: tree /tmp/tessera-posix-log | |
| - name: Stop Docker services (tessera-conformance-posix) | |
| if: ${{ always() }} | |
| run: docker compose -f ./cmd/conformance/posix/docker/compose.yaml down | |
| posix-fault-injection: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Run fault-injection test | |
| run: go test -v -race ./integration/fault/posix/... |