fix: remove broken tmux shortcut #552
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 Configurations' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build-home: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: tiborpilz | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build .#homeConfigurations.tibor.activationPackage | |
build-home-mac: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: tiborpilz | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build '.#homeConfigurations."tibor.pilz".activationPackage' | |
build-edge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: tiborpilz | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build .#nixosConfigurations.edge.config.system.build.toplevel | |
build-klaus: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: tiborpilz | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build .#nixosConfigurations.klaus.config.system.build.toplevel | |
build-thinkyMcThinkpad: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: tiborpilz | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build .#nixosConfigurations.klaus.config.system.build.toplevel | |
# TODO: fix | |
# test-tandoor: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Free Disk Space (Ubuntu) | |
# uses: jlumbroso/free-disk-space@main | |
# - uses: actions/checkout@v4 | |
# - uses: cachix/install-nix-action@v30 | |
# with: | |
# nix_path: nixpkgs=channel:nixos-unstable | |
# - uses: cachix/cachix-action@v15 | |
# with: | |
# name: tiborpilz | |
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
# - run: nix build .#testTandoor --no-sandbox |