mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-09 17:48:19 +00:00
Merge pull request #7173 from heinrich5991/pr_ddnet_fix_ci
Hopefully fix intermittent CI failures
This commit is contained in:
commit
36f72b936a
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -10,6 +10,8 @@ on:
|
|||
jobs:
|
||||
build-cmake:
|
||||
runs-on: ${{ matrix.os }}
|
||||
env:
|
||||
CARGO_HTTP_MULTIPLEXING: false
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
2
.github/workflows/clang-sanitizer.yml
vendored
2
.github/workflows/clang-sanitizer.yml
vendored
|
@ -11,6 +11,8 @@ on:
|
|||
jobs:
|
||||
check-clang-san:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CARGO_HTTP_MULTIPLEXING: false
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
|
2
.github/workflows/clang-tidy.yml
vendored
2
.github/workflows/clang-tidy.yml
vendored
|
@ -11,6 +11,8 @@ on:
|
|||
jobs:
|
||||
check-clang-tidy:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CARGO_HTTP_MULTIPLEXING: false
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
|
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
|
@ -18,6 +18,8 @@ jobs:
|
|||
analyze:
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CARGO_HTTP_MULTIPLEXING: false
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
|
4
.github/workflows/rust.yml
vendored
4
.github/workflows/rust.yml
vendored
|
@ -10,6 +10,8 @@ on:
|
|||
jobs:
|
||||
rustdoc:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CARGO_HTTP_MULTIPLEXING: false
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Cache Rust dependencies
|
||||
|
@ -28,6 +30,8 @@ jobs:
|
|||
|
||||
cargo-deny:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CARGO_HTTP_MULTIPLEXING: false
|
||||
strategy:
|
||||
matrix:
|
||||
checks:
|
||||
|
|
Loading…
Reference in a new issue