File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -57,19 +57,19 @@ jobs:
57
57
# uncomment these next few lines and the corresponding log import
58
58
# in the setup script you're trying to debug if you're having trouble
59
59
# in CI. All the best, brave engineer ( ̄^ ̄ )ゞ
60
- continue-on-error : true
60
+ # continue-on-error: true
61
61
62
- - name : Upload Docker Logs
63
- uses : actions/upload-artifact@v4
64
- with :
65
- name : docker-logs
66
- path : |
67
- ./test-results/logs-before-tests.txt
68
- ./test-results/logs-after-tests.txt
62
+ # - name: Upload Docker Logs
63
+ # uses: actions/upload-artifact@v4
64
+ # with:
65
+ # name: docker-logs
66
+ # path: |
67
+ # ./test-results/logs-before-tests.txt
68
+ # ./test-results/logs-after-tests.txt
69
69
70
- - name : Exit with proper code
71
- if : steps.run_unit_and_integration_tests.outcome == 'failure'
72
- run : exit 1 # Force the workflow to fail if tests failed
70
+ # - name: Exit with proper code
71
+ # if: steps.run_unit_and_integration_tests.outcome == 'failure'
72
+ # run: exit 1 # Force the workflow to fail if tests failed
73
73
74
74
- name : Upload coverage reports to Codecov
75
75
uses : codecov/codecov-action@v5
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- # set -e # Exit immediately if a command exits with a non-zero status. Comment this if debugging in CI
3
+ set -e # Exit immediately if a command exits with a non-zero status. Comment this if debugging in CI
4
4
docker compose down --volumes --remove-orphans
5
5
docker compose -f docker-compose-integration.yaml up -d
6
6
7
7
# wait for Aidbox to finish running before...
8
8
docker compose -f docker-compose-integration.yaml logs aidbox-seeder | grep -q " Finished configuring Aidbox and database"
9
9
10
10
# uncomment these and the corresponding block in ci.yaml to get logs in CI. Make sure also to comment the set -e command at the top of this file too!
11
- mkdir test-results
12
- docker compose -f docker-compose-integration.yaml logs > test-results/logs-before-tests.txt
11
+ # mkdir test-results
12
+ # docker compose -f docker-compose-integration.yaml logs > test-results/logs-before-tests.txt
13
13
14
14
# make an env file
15
15
touch .env.integration
@@ -36,8 +36,8 @@ eval $JEST_CMD
36
36
JEST_EXIT_CODE=$?
37
37
38
38
# uncomment these and the corresponding block in ci.yaml to get logs in CI
39
- docker compose -f docker-compose-e2e.yaml logs query-connector >> test-results/logs-after-tests.txt
40
- docker compose -f docker-compose-e2e.yaml logs aidbox >> test-results/logs-after-tests.txt
39
+ # docker compose -f docker-compose-e2e.yaml logs query-connector >> test-results/logs-after-tests.txt
40
+ # docker compose -f docker-compose-e2e.yaml logs aidbox >> test-results/logs-after-tests.txt
41
41
42
42
# Teardown containers
43
43
docker compose -f docker-compose-integration.yaml down
You can’t perform that action at this time.
0 commit comments