mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
36 lines
1.1 KiB
YAML
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'
|