From abef4a74177c4ffaa3124b1dca413aa4014a858d Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 1 Dec 2020 17:38:22 -0800 Subject: [PATCH] Use stable rust, remove custom rustc flags --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c984f12..b052ebb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,6 @@ on: - "**" env: - RUSTFLAGS: -Cdebuginfo=0 - CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 @@ -22,17 +20,15 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - toolchain: [nightly] + toolchain: [stable] steps: - uses: actions/checkout@v2 - - name: install ${{ matrix.toolchain }} toolchain - id: install_toolchain + - name: Install Rust uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.toolchain }} profile: minimal - # Don't use a 'components:' entry--we don't need them with beta/nightly, plus nightly often doesn't have them override: true - run: |