Skip to content

Commit

Permalink
ci: move clean build to nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
sunng87 committed Dec 17, 2024
1 parent 981fe6c commit 75e5ac0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 75e5ac0

Please sign in to comment.