-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
as the wachowskis said after revolutions, forgive me for this horribl…
…e matrix
- Loading branch information
1 parent
96c6fbd
commit e01f201
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,6 +97,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-18.04, macos-11 ] | ||
test-cmd: [ cargo-test, nextest ] | ||
steps: | ||
# actions/checkout@v2 | ||
- uses: actions/checkout@28c7f3d2b5162b5ddd3dfd9a45aa55eaf396478b | ||
|
@@ -167,7 +168,12 @@ jobs: | |
# rebuild here. | ||
# Put "./cockroachdb/bin" and "./clickhouse" on the PATH for the test | ||
# suite. | ||
run: TMPDIR=$OMICRON_TMP PATH="$PATH:$PWD/out/cockroachdb/bin:$PWD/out/clickhouse" RUSTFLAGS="-D warnings" RUSTDOCFLAGS="-D warnings" cargo nextest run --profile ci --workspace --locked --config-file .cargo/nextest.toml | ||
run: | | ||
TMPDIR=$OMICRON_TMP PATH="$PATH:$PWD/out/cockroachdb/bin:$PWD/out/clickhouse" RUSTFLAGS="-D warnings" RUSTDOCFLAGS="-D warnings" \ | ||
${{ matrix.test-cmd == 'cargo-test' \ | ||
&& cargo test --no-fail-fast --workspace --locked --verbose \ | ||
|| cargo nextest run --profile ci --workspace --locked --config-file .cargo/nextest.toml | ||
}} | ||
- name: Archive test runner JUnit output | ||
# actions/[email protected] | ||
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2 | ||
|