From 40b8c7465f78887279a0a3c743094fa6ea671ab1 Mon Sep 17 00:00:00 2001 From: Alexander Sosedkin Date: Thu, 15 May 2025 20:41:27 +0200 Subject: [PATCH] Revert "Allow unfree packages when building droidctl" This reverts commit af711651ca02d6918a479942be5d87fde2c352ee. --- .github/workflows/emulator.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/emulator.yml b/.github/workflows/emulator.yml index 5e312fa..e434762 100644 --- a/.github/workflows/emulator.yml +++ b/.github/workflows/emulator.yml @@ -24,7 +24,7 @@ jobs: - name: Build droidctl id: droidctl-build run: | - NIXPKGS_ALLOW_UNFREE=1 nix build --impure 'github:t184256/droidctl' --out-link /tmp/droidctl + nix build 'github:t184256/droidctl' --out-link /tmp/droidctl echo "path=$(realpath /tmp/droidctl)" >> "$GITHUB_OUTPUT" @@ -154,7 +154,7 @@ jobs: - name: Build droidctl (anew, fallback) if: always() && (steps.droidctl-fetch.outcome == 'failure') - run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure 'github:t184256/droidctl' --out-link /tmp/droidctl + run: nix build 'github:t184256/droidctl' --out-link /tmp/droidctl - name: Restore AVD cache id: avd-cache