From 59c89c2cb09f0cc244f3d44d8eafd2f88c8555e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6khan=20=C5=9Eim=C5=9Fek?= Date: Tue, 24 Dec 2024 12:11:21 +0300 Subject: [PATCH 1/2] Fix broken link (#4576) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2b5e2c8a2b8..b989c1cd964 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ Thanks for considering making a contribution to the IOTA network or its document ## Contribute to IOTA -See [IOTA Environment Setup](https://github.com/iotaledger/iota/blob/main/docs/content/guides/developer/getting-started/iota-environment.mdx) for approach to submitting code fixes and enhancements. +See [IOTA Environment Setup](https://github.com/iotaledger/iota/blob/main/docs/content/developer/getting-started/iota-environment.mdx) for approach to submitting code fixes and enhancements. Found a bug or security vulnerability? Create a [GitHub issue](https://github.com/iotaledger/iota/issues/new/choose). From 42695d42e5f35854db3ac6b92fb3b856659359cf Mon Sep 17 00:00:00 2001 From: DaughterOfMars Date: Tue, 24 Dec 2024 04:42:00 -0500 Subject: [PATCH 2/2] fix(CI): Fix move tests multiline command (#4611) * fix(CI): Fix move tests multiline command * remove move tests from nightly and add profile * remove timeout --- .github/workflows/_move_tests.yml | 8 +++----- .github/workflows/nightly.yml | 3 --- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/_move_tests.yml b/.github/workflows/_move_tests.yml index 54c8b002f08..c7d4b59e5b3 100644 --- a/.github/workflows/_move_tests.yml +++ b/.github/workflows/_move_tests.yml @@ -17,7 +17,6 @@ jobs: # to Move code but not Rust code (If there are Rust changes, they # will be run as part of a larger test suite). move-test: - timeout-minutes: 10 runs-on: [self-hosted] steps: - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 @@ -25,15 +24,14 @@ jobs: with: tool: nextest - name: Run move tests - run: | - cargo nextest run -E + run: > + cargo nextest run --profile ci -E 'package(iota-framework-tests) or (package(iota-core) and test(quorum_driver::)) or package(iota-benchmark) or test(move_tests::)' move-simtest: - timeout-minutes: 10 runs-on: [self-hosted] steps: - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 @@ -41,7 +39,7 @@ jobs: with: tool: nextest - name: Run move tests - run: | + run: > scripts/simtest/cargo-simtest simtest --profile ci -E 'package(iota-framework-tests) or (package(iota-core) and test(quorum_driver::)) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 3e02cfc233f..e35ec912be6 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -81,9 +81,6 @@ jobs: external-tests: uses: ./.github/workflows/_external_rust_tests.yml - move-tests: - uses: ./.github/workflows/_move_tests.yml - deny: uses: ./.github/workflows/_cargo_deny.yml