Skip to content

Commit

Permalink
Raise minimum tested rustc to 1.64
Browse files Browse the repository at this point in the history
Required by clap 4.1 / clap_lex 0.3.1:

    error: package `clap_lex v0.3.1` cannot be built because it requires rustc 1.64.0 or newer
  • Loading branch information
dtolnay committed Jan 14, 2023
1 parent bfb56d2 commit 913b614
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- rust: beta
- rust: stable
- rust: 1.60.0
- rust: 1.64.0
- name: macOS
rust: nightly
os: macos
Expand Down Expand Up @@ -53,7 +54,7 @@ jobs:
# builds.
run: |
echo RUSTFLAGS=$RUSTFLAGS >> $GITHUB_ENV
echo exclude=--exclude cxx-test-suite >> $GITHUB_OUTPUT
echo exclude=--exclude cxx-test-suite ${{matrix.rust == '1.60.0' && '--exclude cxxbridge-cmd' || ''}} >> $GITHUB_OUTPUT
env:
RUSTFLAGS: ${{env.RUSTFLAGS}} ${{matrix.os && github.event_name != 'schedule' && '--cfg skip_ui_tests' || ''}}
id: testsuite
Expand Down

0 comments on commit 913b614

Please sign in to comment.