Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add x86_64-unknown-linux-gnu target #1330

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ jobs:
include:
- os: ubuntu-20.04
target: x86_64-unknown-linux-musl
- os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
- os: ubuntu-20.04
binary: sccache-dist
extra_args: --no-default-features --features="dist-server"
Expand Down Expand Up @@ -178,10 +180,10 @@ jobs:
extra_args: --features=unstable
- os: macOS-11
rustc: nightly
# Disable on Windows for now as it fails with:
# found invalid metadata files for crate `vte_generate_state_changes`
# - os: windows-2019
# rustc: nightly
# Disable on Windows for now as it fails with:
# found invalid metadata files for crate `vte_generate_state_changes`
# - os: windows-2019
# rustc: nightly
env:
RUST_BACKTRACE: 1
steps:
Expand All @@ -199,9 +201,9 @@ jobs:
- name: Execute tests
run: cargo test --no-fail-fast --locked --all-targets --verbose ${{ matrix.extra_args }}
env:
CARGO_INCREMENTAL: '0'
RUSTC_WRAPPER: ''
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off'
CARGO_INCREMENTAL: "0"
RUSTC_WRAPPER: ""
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off"

- name: Generate coverage data (via `grcov`)
id: coverage
Expand Down Expand Up @@ -255,7 +257,7 @@ jobs:
- name: Create release
run: |
tag_name=${GITHUB_REF#refs/tags/}
for f in sccache-*.tar.gz* sccache-*.zip*; do
for f in sccache-*.tar.gz* sccache-*.zip*; do
if [[ -f "$f" ]]; then
files="$files -a $f";
fi
Expand Down