mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-06 13:02:55 +00:00
Bump rustc to 1.61
This commit is contained in:
committed by
Kirill Bulatov
parent
7b2f9dc908
commit
4f2ac51bdd
6
.github/workflows/build_and_test.yml
vendored
6
.github/workflows/build_and_test.yml
vendored
@@ -127,8 +127,8 @@ jobs:
|
|||||||
target/
|
target/
|
||||||
# Fall back to older versions of the key, if no cache for current Cargo.lock was found
|
# Fall back to older versions of the key, if no cache for current Cargo.lock was found
|
||||||
key: |
|
key: |
|
||||||
v8-${{ runner.os }}-${{ matrix.build_type }}-cargo-${{ hashFiles('Cargo.lock') }}
|
v9-${{ runner.os }}-${{ matrix.build_type }}-cargo-${{ hashFiles('Cargo.lock') }}
|
||||||
v8-${{ runner.os }}-${{ matrix.build_type }}-cargo-
|
v9-${{ runner.os }}-${{ matrix.build_type }}-cargo-
|
||||||
|
|
||||||
- name: Cache postgres v14 build
|
- name: Cache postgres v14 build
|
||||||
id: cache_pg_14
|
id: cache_pg_14
|
||||||
@@ -389,7 +389,7 @@ jobs:
|
|||||||
!~/.cargo/registry/src
|
!~/.cargo/registry/src
|
||||||
~/.cargo/git/
|
~/.cargo/git/
|
||||||
target/
|
target/
|
||||||
key: v8-${{ runner.os }}-${{ matrix.build_type }}-cargo-${{ hashFiles('Cargo.lock') }}
|
key: v9-${{ runner.os }}-${{ matrix.build_type }}-cargo-${{ hashFiles('Cargo.lock') }}
|
||||||
|
|
||||||
- name: Get Neon artifact
|
- name: Get Neon artifact
|
||||||
uses: ./.github/actions/download
|
uses: ./.github/actions/download
|
||||||
|
|||||||
2
.github/workflows/codestyle.yml
vendored
2
.github/workflows/codestyle.yml
vendored
@@ -106,7 +106,7 @@ jobs:
|
|||||||
!~/.cargo/registry/src
|
!~/.cargo/registry/src
|
||||||
~/.cargo/git
|
~/.cargo/git
|
||||||
target
|
target
|
||||||
key: v4-${{ runner.os }}-cargo-${{ hashFiles('./Cargo.lock') }}-rust
|
key: v5-${{ runner.os }}-cargo-${{ hashFiles('./Cargo.lock') }}-rust
|
||||||
|
|
||||||
- name: Run cargo clippy
|
- name: Run cargo clippy
|
||||||
run: ./run_clippy.sh
|
run: ./run_clippy.sh
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
[toolchain]
|
[toolchain]
|
||||||
# We try to stick to a toolchain version that is widely available on popular distributions, so that most people
|
# We try to stick to a toolchain version that is widely available on popular distributions, so that most people
|
||||||
# can use the toolchain that comes with their operating system. But if there's a feature we miss badly from a later
|
# can use the toolchain that comes with their operating system. But if there's a feature we miss badly from a later
|
||||||
# version, we can consider updating. As of this writing, 1.60 is available on Debian 'experimental' but not yet on
|
# version, we can consider updating.
|
||||||
# 'testing' or even 'unstable', which is a bit more cutting-edge than we'd like. Hopefully the 1.60 packages reach
|
# See https://tracker.debian.org/pkg/rustc for more details on Debian rustc package,
|
||||||
# 'testing' soon (and similarly for the other distributions).
|
# we use "unstable" version number as the highest version used in the project by default.
|
||||||
# See https://tracker.debian.org/pkg/rustc for more details on Debian rustc package.
|
channel = "1.61" # do update GitHub CI cache values for rust builds, when changing this value
|
||||||
channel = "1.60" # do update GitHub CI cache values for rust builds, when changing this value
|
|
||||||
profile = "default"
|
profile = "default"
|
||||||
# The default profile includes rustc, rust-std, cargo, rust-docs, rustfmt and clippy.
|
# The default profile includes rustc, rust-std, cargo, rust-docs, rustfmt and clippy.
|
||||||
# https://rust-lang.github.io/rustup/concepts/profiles.html
|
# https://rust-lang.github.io/rustup/concepts/profiles.html
|
||||||
|
|||||||
Reference in New Issue
Block a user