Fix issues connecting to OfficeJet Pro 6230 #324
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 Build" | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-x86: | |
name: Build x86 systems | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
configuration: ["pulse-14", "srv-prod-1", "srv-prod-2", "srv-test-1", "srv-test-2", "srv-eval-1"] | |
steps: | |
- name: Free disk space | |
uses: jlumbroso/free-disk-space@main | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- run: nix build .#nixosConfigurations.${{ matrix.configuration }}.config.system.build.toplevel | |
build-iso: | |
name: Build ISOs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- run: nix build .#nixosConfigurations.minimal-server-iso.config.system.build.isoImage |