Skip to content

Commit

Permalink
fix(CI): Fix move tests multiline command (#4611)
Browse files Browse the repository at this point in the history
* fix(CI): Fix move tests multiline command

* remove move tests from nightly and add profile

* remove timeout
  • Loading branch information
DaughterOfMars authored Dec 24, 2024
1 parent 59c89c2 commit 42695d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/_move_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,31 +17,29 @@ 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
- uses: taiki-e/install-action@375e0c7f08a66b8c2ba7e7eef31a6f91043a81b0 # v2.44.38
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
- uses: taiki-e/install-action@375e0c7f08a66b8c2ba7e7eef31a6f91043a81b0 # v2.44.38
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::))
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 42695d4

Please sign in to comment.