aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-03-26 15:34:37 +0000
committerGitHub <[email protected]>2020-03-26 15:34:37 +0000
commit0a8e65cf850ec3642fa51a3b71a4a7564c46a89b (patch)
tree4584179730b39cbb6490ce247caebd8dbfaab2f7
parentac05571dc9b01dbbb6cf97988190563f1b33ce13 (diff)
parentee6fc4eca2a4f9a47656b426fceb6d2dc98b71ae (diff)
Merge pull request #3735 from matklad/c
Don't deny C for cargo audit
-rw-r--r--.github/workflows/ci.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 29e388e7c..5050c558c 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -10,7 +10,6 @@ on:
10env: 10env:
11 CARGO_INCREMENTAL: 0 11 CARGO_INCREMENTAL: 0
12 CARGO_NET_RETRY: 10 12 CARGO_NET_RETRY: 10
13 CC: deny_c
14 RUN_SLOW_TESTS: 1 13 RUN_SLOW_TESTS: 1
15 RUSTFLAGS: -D warnings 14 RUSTFLAGS: -D warnings
16 RUSTUP_MAX_RETRIES: 10 15 RUSTUP_MAX_RETRIES: 10
@@ -44,6 +43,8 @@ jobs:
44 rust: 43 rust:
45 name: Rust 44 name: Rust
46 runs-on: ${{ matrix.os }} 45 runs-on: ${{ matrix.os }}
46 env:
47 CC: deny_c
47 48
48 strategy: 49 strategy:
49 fail-fast: false 50 fail-fast: false