Skip to content

Commit

Permalink
.github/workflows: Improve pipeline with some parallel steps
Browse files Browse the repository at this point in the history
TODO
  • Loading branch information
Frontear committed Nov 26, 2024
1 parent a46dc2e commit 83bf359
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 18 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Setup Nix Environment

on:
workflow_call:

jobs:
setup:
name: Prepare Environment
runs-on: ubuntu-latest
steps:
- name: Free Disk Space
uses: jlumbroso/[email protected]
with:
tool-cache: true

- name: Install Nix
uses: cachix/install-nix-action@v30
with:
extra_nix_config: |
allow-import-from-derivation = false
eval-cache = false
43 changes: 25 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,35 @@ on:
- staging

jobs:
tests:
check:
name: Check Flake Outputs
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Checkout Repository
uses: actions/[email protected]

- name: Free Disk Space
uses: jlumbroso/[email protected]
with:
tool-cache: true
- name: Prepare Environment
uses: ./.github/workflows/action.yml

- name: Install Nix
uses: cachix/install-nix-action@v30
with:
extra_nix_config: |
allow-import-from-derivation = false
eval-cache = false
- name: Run Flake Check
- name: Flake Check
run: nix flake check

- name: Build NixOS Configurations
build:
name: Build Flake Outputs
runs-on: ubuntu-latest
strategy:
matrix:
outputs: ['nixosConfigurations.LAPTOP-3DT4F02.config.system.build.toplevel',
'nixosConfigurations.DESKTOP-3DT4F02.config.system.build.toplevel',
'nixosConfigurations.ISO-3DT4F02.config.system.build.isoImage']

steps:
- name: Checkout Repository
uses: actions/[email protected]

- name: Prepare Environment
uses: ./.github/workflows/action.yml

- name: Flake Build
run: |
nix build '.#nixosConfigurations.LAPTOP-3DT4F02.config.system.build.toplevel'
nix build '.#nixosConfigurations.DESKTOP-3DT4F02.config.system.build.toplevel'
nix build '.#nixosConfigurations.ISO-3DT4F02.config.system.build.isoImage'
nix build '.#${{ matrix.outputs }}'

0 comments on commit 83bf359

Please sign in to comment.