mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 10:40:54 +00:00
Always run tests and bundle creation in separate runners
This is better for caching and, thus, yields faster CI runs.
This commit is contained in:
parent
141e0559a5
commit
9ff1af3adb
1 changed files with 6 additions and 2 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -18,7 +18,9 @@ env:
|
|||
jobs:
|
||||
tests:
|
||||
name: Run tests
|
||||
runs-on: self-hosted
|
||||
runs-on:
|
||||
- self-hosted
|
||||
- test
|
||||
env:
|
||||
RUSTFLAGS: -D warnings
|
||||
steps:
|
||||
|
@ -39,7 +41,9 @@ jobs:
|
|||
|
||||
bundle:
|
||||
name: Bundle app
|
||||
runs-on: self-hosted
|
||||
runs-on:
|
||||
- self-hosted
|
||||
- bundle
|
||||
env:
|
||||
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
|
||||
MACOS_CERTIFICATE_PASSWORD: ${{ secrets.MACOS_CERTIFICATE_PASSWORD }}
|
||||
|
|
Loading…
Reference in a new issue