feat(vscode): address zellij breaking changes #32
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: CI | |
on: | |
workflow_dispatch: # allows manual triggering | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
linux: | |
name: Build Linux configs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: davsanchez | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
# Commented out as this is aarch64-linux only | |
# - name: Home configs | |
# run: nix run home-manager -- build --flake ".#david@nr-vm" | |
# - name: NixOS config (VM) | |
# run: nix build --flake ".#nixosConfigurations.nr-vm-utm" | |
- name: Colmena configs | |
run: nix shell "nixpkgs#colmena" --command colmena build --on eter --no-build-on-target | |
macos: | |
name: Build macOS configs | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: davsanchez | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Home configs (solio) | |
run: nix run home-manager -- build --flake ".#david@solio" | |
- name: Home configs (sierpe) | |
run: nix run home-manager -- build --flake ".#david@sierpe" | |
- name: nix-darwin config (solio) | |
run: nix run nix-darwin -- build --flake ".#solio" | |
- name: nix-darwin config (sierpe) | |
run: nix run nix-darwin -- build --flake ".#sierpe" |