-
Notifications
You must be signed in to change notification settings - Fork 10
35 lines (29 loc) · 1.71 KB
/
integration_test.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
name: Integration Test
on: [push, pull_request]
permissions:
contents: read
jobs:
mysql-tlog-tiles-api:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Start Docker services (tessera-conformance-mysql-db and tessera-conformance-mysql)
run: docker compose -f ./cmd/conformance/mysql/docker/compose.yaml up --build --detach
- name: Run integration test
run: go test -v -race ./integration/... --run_integration_test=true --log_url="http://localhost:2024" --write_log_url="http://localhost:2024" --log_public_key="transparency.dev/tessera/example+ae330e15+ASf4/L1zE859VqlfQgGzKy34l91Gl8W6wfwp+vKP62DW"
- name: Stop Docker services (tessera-conformance-mysql-db and tessera-conformance-mysql)
if: ${{ always() }}
run: docker compose -f ./cmd/conformance/mysql/docker/compose.yaml down
posix-tlog-tiles-api:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- 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: Stop Docker services (tessera-conformance-posix)
if: ${{ always() }}
run: docker compose -f ./cmd/conformance/posix/docker/compose.yaml down