From f481956519d9d9ba58f8932cea3b63118f641adb Mon Sep 17 00:00:00 2001 From: canonbrother Date: Wed, 30 Aug 2023 15:12:11 +0800 Subject: [PATCH 1/3] extend jellyfish ci timeout --- .github/workflows/tests-jellyfish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests-jellyfish.yml b/.github/workflows/tests-jellyfish.yml index 9289df17df..6aa23a7051 100644 --- a/.github/workflows/tests-jellyfish.yml +++ b/.github/workflows/tests-jellyfish.yml @@ -12,7 +12,7 @@ concurrency: env: BUILD_VERSION: latest # Computed - + jobs: test: name: Test @@ -35,10 +35,10 @@ jobs: run: cd defichain && GIT_VERSION=1 ./make.sh ci-export-vars - name: Build and setup - run: "cd defichain && docker build -t test-build-container + run: "cd defichain && docker build -t test-build-container -f ./contrib/dockerfiles/x86_64-pc-linux-gnu.dockerfile ." - name: Run tests run: | npm ci - DEFICHAIN_DOCKER_IMAGE=test-build-container npm run ci:test + DEFICHAIN_DOCKER_IMAGE=test-build-container npm run ci:test testTimeout=600000 From 8b21ef8c12daa5977206123776d06f3df1c4030a Mon Sep 17 00:00:00 2001 From: canonbrother Date: Wed, 30 Aug 2023 16:19:56 +0800 Subject: [PATCH 2/3] flag correction --- .github/workflows/tests-jellyfish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-jellyfish.yml b/.github/workflows/tests-jellyfish.yml index 6aa23a7051..46dfe71c2b 100644 --- a/.github/workflows/tests-jellyfish.yml +++ b/.github/workflows/tests-jellyfish.yml @@ -41,4 +41,4 @@ jobs: - name: Run tests run: | npm ci - DEFICHAIN_DOCKER_IMAGE=test-build-container npm run ci:test testTimeout=600000 + DEFICHAIN_DOCKER_IMAGE=test-build-container npm run ci:test --testTimeout=600000 From 800a5f798b0831d32091341632130f647e59d9ac Mon Sep 17 00:00:00 2001 From: canonbrother Date: Wed, 30 Aug 2023 23:20:26 +0800 Subject: [PATCH 3/3] add -- to support extra flag --- .github/workflows/tests-jellyfish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-jellyfish.yml b/.github/workflows/tests-jellyfish.yml index 46dfe71c2b..235d6f337f 100644 --- a/.github/workflows/tests-jellyfish.yml +++ b/.github/workflows/tests-jellyfish.yml @@ -41,4 +41,4 @@ jobs: - name: Run tests run: | npm ci - DEFICHAIN_DOCKER_IMAGE=test-build-container npm run ci:test --testTimeout=600000 + DEFICHAIN_DOCKER_IMAGE=test-build-container npm run ci:test -- --testTimeout=600000