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:
Antonio Scandurra 2022-03-02 14:30:00 +01:00
parent 141e0559a5
commit 9ff1af3adb

View file

@ -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 }}