From ac3a9193af1d788bc8c9e5e3877e1c8ddf588976 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Tue, 12 Mar 2024 09:37:05 +0100 Subject: [PATCH 1/8] use sandbox action --- .github/workflows/build-and-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index a58316790f..59a7bae96c 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -125,7 +125,7 @@ jobs: - name: Start iota sandbox if: matrix.os == 'ubuntu-latest' - uses: './.github/actions/iota-sandbox/setup' + uses: 'iotaledger/iota-sandbox/.github/actions/setup/action.yml@add-action' - name: Run tests run: cargo test --workspace --all-features --release @@ -150,7 +150,7 @@ jobs: - name: Tear down iota sandbox if: matrix.os == 'ubuntu-latest' && always() - uses: './.github/actions/iota-sandbox/tear-down' + uses: 'iotaledger/iota-sandbox/.github/actions/tear-down/action.yml@add-action' - name: Stop sccache uses: './.github/actions/rust/sccache/stop-sccache' @@ -195,7 +195,7 @@ jobs: path: bindings/wasm - name: Start iota sandbox - uses: './.github/actions/iota-sandbox/setup' + uses: 'iotaledger/iota-sandbox/.github/actions/setup/action.yml@add-action' - name: Run Wasm examples run: npm run test:examples @@ -203,4 +203,4 @@ jobs: - name: Tear down iota sandbox if: always() - uses: './.github/actions/iota-sandbox/tear-down' + uses: 'iotaledger/iota-sandbox/.github/actions/tear-down/action.yml@add-action' From b23ec32c4249f9f8e979e2ed6cb8568b453e511b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Tue, 12 Mar 2024 09:40:36 +0100 Subject: [PATCH 2/8] fix integration --- .github/workflows/build-and-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 59a7bae96c..a6f1a65de5 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -125,7 +125,7 @@ jobs: - name: Start iota sandbox if: matrix.os == 'ubuntu-latest' - uses: 'iotaledger/iota-sandbox/.github/actions/setup/action.yml@add-action' + uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' - name: Run tests run: cargo test --workspace --all-features --release @@ -150,7 +150,7 @@ jobs: - name: Tear down iota sandbox if: matrix.os == 'ubuntu-latest' && always() - uses: 'iotaledger/iota-sandbox/.github/actions/tear-down/action.yml@add-action' + uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@add-action' - name: Stop sccache uses: './.github/actions/rust/sccache/stop-sccache' @@ -195,7 +195,7 @@ jobs: path: bindings/wasm - name: Start iota sandbox - uses: 'iotaledger/iota-sandbox/.github/actions/setup/action.yml@add-action' + uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' - name: Run Wasm examples run: npm run test:examples @@ -203,4 +203,4 @@ jobs: - name: Tear down iota sandbox if: always() - uses: 'iotaledger/iota-sandbox/.github/actions/tear-down/action.yml@add-action' + uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@add-action' From 88bcf14e6c6cdaca6ce6e73268af6c79c909eca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Tue, 12 Mar 2024 18:10:26 +0100 Subject: [PATCH 3/8] use latest sandbox --- .github/workflows/build-and-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index a6f1a65de5..49e742e95a 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -126,6 +126,8 @@ jobs: - name: Start iota sandbox if: matrix.os == 'ubuntu-latest' uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' + with: + branch: add-action - name: Run tests run: cargo test --workspace --all-features --release @@ -196,6 +198,8 @@ jobs: - name: Start iota sandbox uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' + with: + branch: add-action - name: Run Wasm examples run: npm run test:examples From 7e290dc613cbaa8f8ab094bdb85e0f4f567d20de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Wed, 13 Mar 2024 09:50:42 +0100 Subject: [PATCH 4/8] use env for sandbox action --- .github/workflows/build-and-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 49e742e95a..39f38618a0 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -128,6 +128,8 @@ jobs: uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' with: branch: add-action + env: + COMPOSE_PROFILES: 'inx-faucet.inx-indexer' - name: Run tests run: cargo test --workspace --all-features --release @@ -200,6 +202,8 @@ jobs: uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' with: branch: add-action + env: + COMPOSE_PROFILES: 'inx-faucet.inx-indexer' - name: Run Wasm examples run: npm run test:examples From e90bd216774981e7bfb12737459c4cc39ea7d3b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Mon, 25 Mar 2024 17:03:52 +0100 Subject: [PATCH 5/8] Update .github/workflows/build-and-test.yml Co-authored-by: Dr-Electron --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 39f38618a0..35762ad132 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -203,7 +203,7 @@ jobs: with: branch: add-action env: - COMPOSE_PROFILES: 'inx-faucet.inx-indexer' + COMPOSE_PROFILES: 'inx-faucet,inx-indexer' - name: Run Wasm examples run: npm run test:examples From 8d44bed010adffabcd2bfa5ecf50c1efc78037d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Mon, 25 Mar 2024 17:03:59 +0100 Subject: [PATCH 6/8] Update .github/workflows/build-and-test.yml Co-authored-by: Dr-Electron --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 35762ad132..d63ec44238 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -129,7 +129,7 @@ jobs: with: branch: add-action env: - COMPOSE_PROFILES: 'inx-faucet.inx-indexer' + COMPOSE_PROFILES: 'inx-faucet,inx-indexer' - name: Run tests run: cargo test --workspace --all-features --release From 537893dcc2881259ad435ba5a27f8f4b1c8f2334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Tue, 2 Apr 2024 14:00:06 +0200 Subject: [PATCH 7/8] use sandbox release --- .github/workflows/build-and-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index d63ec44238..2e3a2285e0 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -125,7 +125,7 @@ jobs: - name: Start iota sandbox if: matrix.os == 'ubuntu-latest' - uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' + uses: 'iotaledger/iota-sandbox/.github/actions/setup@v1.1.0' with: branch: add-action env: @@ -154,7 +154,7 @@ jobs: - name: Tear down iota sandbox if: matrix.os == 'ubuntu-latest' && always() - uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@add-action' + uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@v1.1.0' - name: Stop sccache uses: './.github/actions/rust/sccache/stop-sccache' @@ -199,7 +199,7 @@ jobs: path: bindings/wasm - name: Start iota sandbox - uses: 'iotaledger/iota-sandbox/.github/actions/setup@add-action' + uses: 'iotaledger/iota-sandbox/.github/actions/setup@v1.1.0' with: branch: add-action env: @@ -211,4 +211,4 @@ jobs: - name: Tear down iota sandbox if: always() - uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@add-action' + uses: 'iotaledger/iota-sandbox/.github/actions/tear-down@v1.1.0' From 324fe9b527ccbdb7a0d8c1322e64e8c7818f88ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Tue, 2 Apr 2024 14:10:44 +0200 Subject: [PATCH 8/8] use sandbox release --- .github/workflows/build-and-test.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2e3a2285e0..bab916ce99 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -126,8 +126,6 @@ jobs: - name: Start iota sandbox if: matrix.os == 'ubuntu-latest' uses: 'iotaledger/iota-sandbox/.github/actions/setup@v1.1.0' - with: - branch: add-action env: COMPOSE_PROFILES: 'inx-faucet,inx-indexer' @@ -200,8 +198,6 @@ jobs: - name: Start iota sandbox uses: 'iotaledger/iota-sandbox/.github/actions/setup@v1.1.0' - with: - branch: add-action env: COMPOSE_PROFILES: 'inx-faucet,inx-indexer'