We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce9f04e commit 09e975dCopy full SHA for 09e975d
.github/workflows/ci.yml
@@ -18,7 +18,6 @@ jobs:
18
env:
19
RUST_BACKTRACE: 1
20
HOST_TARGET: ${{ matrix.host_target }}
21
- MIRIFLAGS: -Zmiri-tag-gc=${{ matrix.os == 'ubuntu-latest' }}
22
strategy:
23
matrix:
24
build: [linux64, macos, win32]
@@ -35,6 +34,12 @@ jobs:
35
34
steps:
36
- uses: actions/checkout@v3
37
+ - name: Configure
38
+ run: echo "MIRIFLAGS=-Zmiri-tag-gc=$([[ ${{ matrix.os }} == \"ubuntu.latest\" ]]; echo $?)" >> $GITHUB_ENV
39
+
40
+ - name: Test
41
+ run: echo $MIRIFLAGS
42
43
# We install gnu-tar because BSD tar is buggy on macOS builders of GHA.
44
# See <https://github.com/actions/cache/issues/403>.
45
- name: Install GNU tar
0 commit comments