Skip to content

Commit d885995

Browse files
authored
Update rustc-ap crates to 659.0.0 (#4188)
1 parent 99edc88 commit d885995

File tree

17 files changed

+170
-127
lines changed

17 files changed

+170
-127
lines changed

.github/workflows/linux.yml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424

2525
env:
2626
CFG_RELEASE_CHANNEL: ${{ matrix.cfg-release-channel }}
27+
CFG_RELEASE: ${{ matrix.cfg-release-channel }}
2728

2829
steps:
2930
- name: checkout

.github/workflows/mac.yml

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
]
1616
channel: [ nightly ]
1717

18+
env:
19+
CFG_RELEASE_CHANNEL: nightly
20+
CFG_RELEASE: nightly
21+
1822
steps:
1923
- name: checkout
2024
uses: actions/checkout@v2

.github/workflows/windows.yml

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
target: i686-pc-windows-gnu
2626
mingw-7z-path: mingw
2727

28+
env:
29+
CFG_RELEASE_CHANNEL: nightly
30+
CFG_RELEASE: nightly
31+
2832
steps:
2933
# The Windows runners have autocrlf enabled by default
3034
# which causes failures for some of rustfmt's line-ending sensitive tests

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ matrix:
4545

4646
script:
4747
- |
48+
export CFG_RELEASE_CHANNEL=nightly
49+
export CFG_RELEASE=nightly
4850
if [ -z ${INTEGRATION} ]; then
4951
cargo build && cargo test && cargo test -- --ignored && cargo test --manifest-path rustfmt-core/Cargo.toml && cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored
5052
else

0 commit comments

Comments
 (0)