Skip to content

Commit

Permalink
Upgrade ci rust nightly to 2021-10-07, with fixed rust issue 89485
Browse files Browse the repository at this point in the history
You can see how the issue might apply to the GroupVars
promote_plain()'s

    match self { Plain | Important => Important, _ => self }
  • Loading branch information
cormacrelf committed Dec 1, 2021
1 parent bddf231 commit 5ec44aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
with:
submodules: recursive

- name: Install Rust nightly-2021-08-30
- name: install rust nightly-2021-10-07
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2021-08-30
toolchain: nightly-2021-10-07
override: true
- uses: Swatinem/rust-cache@v1
- run: cargo test --lib
Expand Down Expand Up @@ -84,10 +84,10 @@ jobs:
S3_PREFIX='https://citeproc-rs-test-results.cormacrelf.net'
curl -sL "$S3_PREFIX/.snapshots/branches/$GITHUB_BASE" -o ".snapshots/branches/$GITHUB_BASE"
- name: Install Rust nightly-2021-08-30
- name: install rust nightly-2021-10-07
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2021-08-30
toolchain: nightly-2021-10-07
override: true
- uses: Swatinem/rust-cache@v1

Expand Down
2 changes: 1 addition & 1 deletion bindings/xcframework/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -euxo pipefail
: "${OUTNAME:=CiteprocRs}"
# needs PR https://github.com/rust-lang/rust/pull/87699
# install with `rustup install $TOOLCHAIN && rustup component add rust-src --toolchain $TOOLCHAIN`
# : "${TOOLCHAIN:=nightly-2021-08-30}"
# : "${TOOLCHAIN:=nightly-2021-10-07}"
: "${CONFIGURATION:=test}"

export IPHONEOS_DEPLOYMENT_TARGET=13.0
Expand Down
2 changes: 1 addition & 1 deletion bindings/xcframework/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[toolchain]
# needs PR https://github.com/rust-lang/rust/pull/87699
channel = "nightly-2021-08-30"
channel = "nightly-2021-10-07"
profile = "minimal"
components = [ "rust-src" ]
targets = [
Expand Down

0 comments on commit 5ec44aa

Please sign in to comment.