From 0830f1a5c91851a40b5a923591663126c577c664 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Fri, 14 Jul 2023 19:07:51 +0800 Subject: [PATCH] ci: remove build profiles step We'll figure that out later. --- .github/workflows/build.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd6719f3..94b59196 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,30 +24,3 @@ jobs: authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - name: Build custom packages run: nix build -f ./pkgs --impure - - build-profiles: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v22 - with: - nix_path: nixpkgs=channel:nixos-unstable - extra_nix_config: | - keep-going = true - - run: | - sudo apt clean - - name: Prepare push to binary cache - uses: cachix/cachix-action@v12 - if: ${{ github.ref == 'refs/heads/master' }} - with: - name: foo-dogsquared - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - - name: Build Nix profiles - run: | - for nixosHost in ni graphical-installer bootstrap; do - nix build ".#nixosConfigurations.${nixosHost}.config.system.build.toplevel" --impure - done - - for homeManagerConfig in foo-dogsquared; do - nix build ".#homeManagerConfigurations.${homeManagerConfig}.activationPackage" --impure - done