nix-on-droid/.github/workflows/fakedroid-odt.yml
2022-10-04 00:43:13 +02:00

36 lines
1.1 KiB
YAML

name: Run on-device-tests with fakedroid
on:
pull_request:
push:
jobs:
fakedroid-odt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install nix
uses: cachix/install-nix-action@v17
with:
nix_path: nixpkgs=channel:nixos-22.05
extra_nix_config: "experimental-features = nix-command"
- name: Setup cachix
uses: cachix/cachix-action@v10
with:
name: nix-on-droid
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
- name: Initialize fakedroid
run: tests/fakedroid.sh echo INIT
- name: Run tests
run: |
tests/fakedroid.sh mkdir -p .cache/nix-on-droid-self-test
tests/fakedroid.sh touch .cache/nix-on-droid-self-test/confirmation-granted
tests/fakedroid.sh nix-on-droid on-device-test
- name: Push to cachix
if: always() && github.event_name != 'pull_request'
run: tests/fakedroid.sh nix-shell -p cachix --run 'nix --extra-experimental-features nix-command path-info --all | cachix push nix-on-droid'