tilt ci #6
Workflow file for this run
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
name: tilt-ci | |
on: [push] | |
jobs: | |
tilt-ci-android: | |
name: Tilt CI Android | |
runs-on: ["self-hosted", "Linux", "X64"] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Tilt CI | |
run: | | |
for i in {1..5}; do | |
echo "Tilt CI attempt $i" | |
nix develop -c make tilt-ci && exit 0 || sleep 60 | |
done | |
exit 1 | |
- name: Make sure init-setup has run (testing depends on it) | |
run: nix develop -c tilt wait --timeout 1h --for=condition=Ready uiresources init-setup | |
- name: Destroy backend | |
if: always() | |
continue-on-error: true | |
run: nix develop -c make tilt-down | |
# tilt-ci-ios: | |
# name: Tilt CI MacOS | |
# runs-on: ["self-hosted", "MacOS", "ARM64"] | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: DeterminateSystems/magic-nix-cache-action@v2 | |
# - name: Run local backend in background | |
# run: | | |
# nix develop -c echo "nix flake built" | |
# nix develop -c make tilt-up & | |
# echo $? > dev/.tilt-pid.tmp.ci | |
# sleep 5 | |
# - name: Wait for backend to be ready | |
# run: nix develop -c tilt wait --timeout 1h --for=condition=Ready uiresources init-setup | |
# - name: Destroy backend | |
# if: always() | |
# continue-on-error: true | |
# run: | | |
# kill $(cat dev/.tilt-pid.tmp.ci) || true | |
# nix develop -c make tilt-down |