From 75e5ac0fc3381e6cfef0ece9beb64e8b43760569 Mon Sep 17 00:00:00 2001 From: Ning Sun Date: Tue, 17 Dec 2024 18:53:13 +0800 Subject: [PATCH] ci: move clean build to nightly --- .github/workflows/develop.yml | 12 ------------ .github/workflows/nightly-ci.yml | 11 +++++++++++ 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 553276b28a72..8939453f9dd9 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -725,18 +725,6 @@ jobs: fail_ci_if_error: false verbose: true - cleanbuild: - if: github.event.pull_request.draft == false - runs-on: ubuntu-20.04-8-cores - timeout-minutes: 60 - needs: [coverage, fmt, clippy, check] - steps: - - uses: actions/checkout@v4 - - uses: cachix/install-nix-action@v27 - with: - nix_path: nixpkgs=channel:nixos-unstable - - run: nix-shell --pure --run "cargo build" - # compat: # name: Compatibility Test # needs: build diff --git a/.github/workflows/nightly-ci.yml b/.github/workflows/nightly-ci.yml index b6ff247ffb9e..285fb61a7cb7 100644 --- a/.github/workflows/nightly-ci.yml +++ b/.github/workflows/nightly-ci.yml @@ -114,6 +114,17 @@ jobs: GT_S3_REGION: ${{ vars.AWS_CI_TEST_BUCKET_REGION }} UNITTEST_LOG_DIR: "__unittest_logs" + cleanbuild-linux-nix: + runs-on: ubuntu-latest-8-cores + timeout-minutes: 60 + needs: [coverage, fmt, clippy, check] + steps: + - uses: actions/checkout@v4 + - uses: cachix/install-nix-action@v27 + with: + nix_path: nixpkgs=channel:nixos-unstable + - run: nix-shell --pure --run "cargo build" + check-status: name: Check status needs: [sqlness-test, sqlness-windows, test-on-windows]