-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: extract individual test.yml (#908)
* chore: extract individual test.yml * update * update test-intellij * add test-tabby-ui * update * update * update * update * update * update * update * update
- Loading branch information
Showing
9 changed files
with
98 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,9 @@ on: | |
tags: | ||
- 'v*' | ||
- 'nightly' | ||
pull_request: | ||
branches: ["main" ] | ||
paths: | ||
- 'Cargo.toml' | ||
- 'Cargo.lock' | ||
- 'crates/**' | ||
- 'ee/tabby-webserver/**' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | ||
group: ${{ github.workflow_ref }}-${{ github.head_ref || github.ref_name }} | ||
|
||
# If this is enabled it will cancel current running and start latest | ||
cancel-in-progress: true | ||
|
@@ -24,44 +17,6 @@ env: | |
RUST_TOOLCHAIN: 1.73.0 | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
env: | ||
SCCACHE_GHA_ENABLED: true | ||
RUSTC_WRAPPER: sccache | ||
CARGO_INCREMENTAL: 0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ env.RUST_TOOLCHAIN }} | ||
|
||
- name: Sccache cache | ||
uses: mozilla-actions/[email protected] | ||
with: | ||
version: "v0.4.0" | ||
|
||
- name: Cargo registry cache | ||
uses: actions/cache@v3 | ||
with: | ||
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-${{ github.sha }} | ||
restore-keys: | | ||
cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}- | ||
cargo-${{ runner.os }}- | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
- run: bash ./ci/prepare_build_environment.sh | ||
|
||
- name: Run unit tests | ||
run: cargo test --bin tabby --lib | ||
|
||
|
||
release-binary: | ||
if: github.event_name != 'pull_request' | ||
needs: tests | ||
|
17 changes: 9 additions & 8 deletions
17
.github/workflows/intellij-test.yml → .github/workflows/test-intellij.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Test Rust | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
paths: | ||
- 'Cargo.toml' | ||
- 'Cargo.lock' | ||
- 'crates/**' | ||
- 'ee/tabby-webserver/**' | ||
- '.github/workflows/test-rust.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | ||
|
||
# If this is enabled it will cancel current running and start latest | ||
cancel-in-progress: true | ||
|
||
env: | ||
RUST_TOOLCHAIN: 1.73.0 | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
env: | ||
SCCACHE_GHA_ENABLED: true | ||
RUSTC_WRAPPER: sccache | ||
CARGO_INCREMENTAL: 0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ env.RUST_TOOLCHAIN }} | ||
|
||
- name: Sccache cache | ||
uses: mozilla-actions/[email protected] | ||
with: | ||
version: "v0.4.0" | ||
|
||
- name: Cargo registry cache | ||
uses: actions/cache@v3 | ||
with: | ||
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-${{ github.sha }} | ||
restore-keys: | | ||
cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}- | ||
cargo-${{ runner.os }}- | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
- run: bash ./ci/prepare_build_environment.sh | ||
|
||
- name: Run unit tests | ||
run: cargo test --bin tabby --lib |
19 changes: 9 additions & 10 deletions
19
.github/workflows/tabby-agent-test.yml → .github/workflows/test-tabby-agent.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 9 additions & 8 deletions
17
.github/workflows/tabby-ui-test.yml → .github/workflows/test-tabby-ui.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 8 additions & 10 deletions
18
.github/workflows/vscode-test.yml → .github/workflows/test-vscode.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters