Time consuming tests #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Time consuming tests | |
on: | |
schedule: | |
- cron: "0 0 * * MON" | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
TERM: xterm-256color | |
jobs: | |
time-consuming-tests: | |
runs-on: [kuberunner] | |
env: | |
RUSTUP_HOME: /tmp/rustup_home | |
steps: | |
- name: "ACTIONS: Checkout" | |
uses: actions/checkout@v4 | |
- name: "Install: Set cargo path" | |
run: echo "/tmp/cargo/bin" >> $GITHUB_PATH | |
- name: "Install: Rust toolchain" | |
uses: dsherret/rust-toolchain-file@v1 | |
- name: "Build: Init" | |
run: ./scripts/gear.sh init cargo | |
- name: "Build: Node" | |
run: ./scripts/gear.sh build node --release --locked | |
- name: "Test: Time consuming tests" | |
run: ./scripts/gear.sh test time-consuming |