From 6c331b0fce3d1be534c307e785ebff63c3fcb08c Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Tue, 3 Sep 2024 13:28:47 +0000 Subject: [PATCH 1/2] chore: pin the Rust baseline version to 1.80 See #2837 --- .github/workflows/build.yml | 10 +++++----- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d67faa62c2..d83fc31ab5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: stable + toolchain: 1.80 override: true - name: Format @@ -36,7 +36,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: stable + toolchain: 1.80 override: true - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov @@ -67,7 +67,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: stable + toolchain: 1.80 override: true - name: build and lint with clippy @@ -104,7 +104,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: "stable" + toolchain: 1.80 override: true - name: Run tests @@ -138,7 +138,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: stable + toolchain: 1.80 override: true # Install Java and Hadoop for HDFS integration tests diff --git a/Cargo.toml b/Cargo.toml index e8cb698318..74a4c73597 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" [workspace.package] authors = ["Qingping Hou "] -rust-version = "1.75" +rust-version = "1.80" keywords = ["deltalake", "delta", "datalake"] readme = "README.md" edition = "2021" From e4c502beaa07b04c35481df9fea73d49196e7c36 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Thu, 5 Sep 2024 13:40:53 +0000 Subject: [PATCH 2/2] A bare 1.80 gets turned into 1.8.0 YAML is pain --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d83fc31ab5..ff650eff98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: 1.80 + toolchain: '1.80' override: true - name: Format @@ -36,7 +36,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: 1.80 + toolchain: '1.80' override: true - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov @@ -67,7 +67,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: 1.80 + toolchain: '1.80' override: true - name: build and lint with clippy @@ -104,7 +104,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: 1.80 + toolchain: '1.80' override: true - name: Run tests @@ -138,7 +138,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: default - toolchain: 1.80 + toolchain: '1.80' override: true # Install Java and Hadoop for HDFS integration tests