Skip to content

Commit c689722

Browse files
ahhh man
1 parent 41ef97c commit c689722

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,12 @@ jobs:
690690
version: 2 # default
691691
verbose: false # default
692692
arch: amd64 # allowed values: amd64, x86, x64, arm, arm64
693+
694+
- name: Create certificates for robot tests
695+
run: |
696+
openssl req -x509 -keyout test/server/mtls/credentials/pg_server_key.pem -out test/server/mtls/credentials/pg_server_cert.pem -config test/server/mtls/openssl.cnf -days 365
697+
openssl req -x509 -keyout test/server/mtls/credentials/pg_client_key.pem -out test/server/mtls/credentials/pg_client_cert.pem -config test/server/mtls/openssl.cnf -days 365
698+
openssl req -x509 -keyout test/server/mtls/credentials/pg_rubbish_key.pem -out test/server/mtls/credentials/pg_rubbish_cert.pem -config test/server/mtls/openssl.cnf -days 365
693699
694700
- name: Run traffic light robot integration tests
695701
if: ((startsWith(github.ref_name, 'build-traffic-lights') && github.ref_type == 'tag') || (github.repository == 'stackql/stackql' && github.event_name == 'push' && github.ref == 'refs/heads/main')) && matrix.registry == 'test/registry'
@@ -725,7 +731,7 @@ jobs:
725731
- name: Output from traffic lights tmp dir
726732
if: env.TRAFFIC_LIGHTS_COMPLETED == 'true'
727733
run: |
728-
cat ./test/robot/integration-traffic-lights/tmp/*
734+
cat ./test/robot/integration-traffic-lights/tmp/* || true
729735
730736
- name: Generate rewritten registry for simulations
731737
if: ${{ matrix.registry != 'test/registry' }}

0 commit comments

Comments
 (0)