diff --git a/.github/workflows/apidoc.yml b/.github/workflows/apidoc.yml index 75979fbce8b7..d0392a224176 100644 --- a/.github/workflows/apidoc.yml +++ b/.github/workflows/apidoc.yml @@ -13,7 +13,7 @@ on: name: Build API docs env: - RUST_TOOLCHAIN: nightly-2024-04-18 + RUST_TOOLCHAIN: nightly-2024-04-20 jobs: apidoc: diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index fc6d5efb85dc..0e05569b4b14 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -30,7 +30,7 @@ concurrency: cancel-in-progress: true env: - RUST_TOOLCHAIN: nightly-2024-04-18 + RUST_TOOLCHAIN: nightly-2024-04-20 jobs: check-typos-and-docs: @@ -57,7 +57,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ windows-latest, ubuntu-20.04 ] + os: [ windows-2022, ubuntu-20.04 ] timeout-minutes: 60 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/nightly-ci.yml b/.github/workflows/nightly-ci.yml index e4d6a793d063..1665d9547264 100644 --- a/.github/workflows/nightly-ci.yml +++ b/.github/workflows/nightly-ci.yml @@ -10,7 +10,7 @@ concurrency: cancel-in-progress: true env: - RUST_TOOLCHAIN: nightly-2024-04-18 + RUST_TOOLCHAIN: nightly-2024-04-20 jobs: sqlness-test: @@ -35,7 +35,7 @@ jobs: sqlness-windows: name: Sqlness tests on Windows if: ${{ github.repository == 'GreptimeTeam/greptimedb' }} - runs-on: windows-latest-8-cores + runs-on: windows-2022-8-cores timeout-minutes: 60 steps: - uses: actions/checkout@v4 @@ -68,7 +68,7 @@ jobs: test-on-windows: name: Run tests on Windows if: ${{ github.repository == 'GreptimeTeam/greptimedb' }} - runs-on: windows-latest-8-cores + runs-on: windows-2022-8-cores timeout-minutes: 60 steps: - run: git config --global core.autocrlf false diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 388eeccabfc1..c0f52f5a540b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,7 +82,7 @@ on: # Use env variables to control all the release process. env: # The arguments of building greptime. - RUST_TOOLCHAIN: nightly-2024-04-18 + RUST_TOOLCHAIN: nightly-2024-04-20 CARGO_PROFILE: nightly # Controls whether to run tests, include unit-test, integration-test and sqlness. @@ -102,7 +102,7 @@ jobs: linux-amd64-runner: ${{ steps.start-linux-amd64-runner.outputs.label }} linux-arm64-runner: ${{ steps.start-linux-arm64-runner.outputs.label }} macos-runner: ${{ inputs.macos_runner || vars.DEFAULT_MACOS_RUNNER }} - windows-runner: windows-latest-8-cores + windows-runner: windows-2022-8-cores # The following EC2 resource id will be used for resource releasing. linux-amd64-ec2-runner-label: ${{ steps.start-linux-amd64-runner.outputs.label }} diff --git a/rust-toolchain.toml b/rust-toolchain.toml index b92b3fa74b10..dc1d13276060 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "nightly-2024-04-18" +channel = "nightly-2024-04-20" diff --git a/src/common/runtime/src/repeated_task.rs b/src/common/runtime/src/repeated_task.rs index 5818e1def8f2..cf9f02ffddb2 100644 --- a/src/common/runtime/src/repeated_task.rs +++ b/src/common/runtime/src/repeated_task.rs @@ -204,7 +204,7 @@ mod tests { tokio::time::sleep(Duration::from_millis(550)).await; task.stop().await.unwrap(); - assert_eq!(n.load(Ordering::Relaxed), 5); + assert!(n.load(Ordering::Relaxed) >= 3); } #[tokio::test] @@ -221,6 +221,6 @@ mod tests { tokio::time::sleep(Duration::from_millis(550)).await; task.stop().await.unwrap(); - assert_eq!(n.load(Ordering::Relaxed), 6); + assert!(n.load(Ordering::Relaxed) >= 4); } }