diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2021-07-28 04:33:57 +0000 |
|---|---|---|
| committer | Caleb Zulawski <caleb.zulawski@gmail.com> | 2021-07-28 04:33:57 +0000 |
| commit | 9ab050796f24b3dcd5b56c303bc48024af027eb4 (patch) | |
| tree | 40d9597ac37e03fc4174db567201a0b72d3fa507 | |
| parent | 1f69bc459a2d4d2a34009553e57ff93598e6a342 (diff) | |
| download | rust-9ab050796f24b3dcd5b56c303bc48024af027eb4.tar.gz rust-9ab050796f24b3dcd5b56c303bc48024af027eb4.zip | |
Fix feature flag in CI
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f15dcc6c16..454bc315475 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -207,9 +207,9 @@ jobs: - "-Ctarget-feature=+avx512" # AVX-512 uses packed bit masks, so enable it to test more code paths features: - "" - - "--feature std" - - "--feature const_evaluatable_checked" - - "--feature std --feature const_evaluatable_checked" + - "--features std" + - "--features const_evaluatable_checked" + - "--features std --features const_evaluatable_checked" steps: - uses: actions/checkout@v2 |
