Skip to content

Commit f05409d

Browse files
committed
fix(ci): removed commented system variable
Signed-off-by: Carlos Amaro <[email protected]>
1 parent 98546f9 commit f05409d

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ jobs:
673673
JEST_TEST_RUNNER_DISABLED: false
674674
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/cactus-common-example-server
675675
JEST_TEST_CODE_COVERAGE_ENABLED: true
676-
TAPE_TEST_RUNNER_DISABLED: true,
676+
TAPE_TEST_RUNNER_DISABLED: true
677677
DUMP_DISK_USAGE_INFO_DISABLED: false
678678
FREE_UP_GITHUB_RUNNER_DISK_SPACE_DISABLED: false
679679
needs: build-dev
@@ -1929,10 +1929,7 @@ jobs:
19291929
cp-bungee-hermes:
19301930
continue-on-error: false
19311931
env:
1932-
# Otherwise it fails with: You are running out of disk space.
1933-
# The runner will stop working when the machine runs out of disk space.
1934-
# Free space left: 26 MB
1935-
FREE_UP_GITHUB_RUNNER_DISK_SPACE_DISABLED: false
1932+
FREE_UP_GITHUB_RUNNER_DISK_SPACE_DISABLED: true
19361933
FULL_BUILD_DISABLED: true
19371934
JEST_TEST_PATTERN: packages/cactus-plugin-satp-hermes/src/test/typescript/(unit|integration|benchmark)/.*/*.test.ts
19381935
JEST_TEST_RUNNER_DISABLED: false
@@ -2142,7 +2139,7 @@ jobs:
21422139
JEST_TEST_RUNNER_DISABLED: false
21432140
JEST_TEST_COVERAGE_PATH: ./code-coverage-ts/ctp-htlc-eth-besu
21442141
JEST_TEST_CODE_COVERAGE_ENABLED: true
2145-
TAPE_TEST_PATTERN: '--files={./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/get-single-status-endpoint.test.ts}'
2142+
TAPE_TEST_PATTERN: '--files=./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/get-single-status-endpoint.test.ts'
21462143
TAPE_TEST_RUNNER_DISABLED: false
21472144
needs: build-dev
21482145
runs-on: ubuntu-22.04

tools/ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function mainTask()
160160
#elif [ "${JEST_TEST_CODE_COVERAGE_ENABLED:-true}" = "true" ]; then
161161
# yarn jest $JEST_TEST_PATTERN --coverage --coverageDirectory=$JEST_TEST_COVERAGE_PATH
162162
else
163-
yarn test:jest:all #$JEST_TEST_PATTERN
163+
yarn test:jest:all $JEST_TEST_PATTERN
164164
fi
165165

166166
if [ "${DUMP_DISK_USAGE_INFO_DISABLED:-true}" = "true" ]; then

0 commit comments

Comments
 (0)