attic: Migrate to postgresql #173
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: Build NixOS | |
on: | |
push | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@v1.3.1 | |
with: | |
tool-cache: true | |
android: true | |
dotnet: true | |
haskell: true | |
large-packages: true | |
docker-images: true | |
swap-storage: false | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Install Cachix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: elxreno | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Build NixOS for INFINITY | |
run: nix build -L --no-link .#nixosConfigurations.INFINITY.config.system.build.toplevel |