Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
yunfachi committed Dec 29, 2023
1 parent a2af549 commit f8cc8d3
Showing 1 changed file with 17 additions and 53 deletions.
70 changes: 17 additions & 53 deletions .github/workflows/nixos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ on:
- ".gitignore"

jobs:
build-mitama:
build-system:
runs-on: ubuntu-latest
steps:
- name: "Create Dir for Mounting moar Disk Space"
run: |
sudo mkdir /nix
- name: "Maximize Disk Space 1"
run: |
sudo rm -rf $AGENT_TOOLSDIRECTORY
Expand Down Expand Up @@ -58,60 +58,24 @@ jobs:

- name: "Build NixOS config ❄️"
run: |
nix build .#nixosConfigurations.mitama.config.system.build.toplevel --accept-flake-config
nix build "${{ matrix.flakeConfig }}" --accept-flake-config
- name: "Check NixOS flake ❄️"
run: |
nix flake check --accept-flake-config --no-build
build-dekomori:
runs-on: ubuntu-latest
steps:
- name: "Create Dir for Mounting moar Disk Space"
run: |
sudo mkdir /nix
- name: "Maximize Disk Space 1"
run: |
sudo rm -rf $AGENT_TOOLSDIRECTORY
sudo rm -rf /usr/local/.ghcup
sudo rm -rf /usr/local/share/powershell
sudo rm -rf /usr/local/share/chromium
sudo rm -rf /usr/local/lib/node_modules
sudo rm -rf /usr/local/lib/heroku
sudo rm -rf /var/lib/docker/overlay2
sudo rm -rf /home/linuxbrew
sudo rm -rf /home/runner/.rustup
- name: "Maximize Disk Space 2"
uses: easimon/maximize-build-space@v8
with:
root-reserve-mb: 8192
swap-size-mb: 1024
build-mount-path: /nix
remove-dotnet: "true"
remove-android: "true"
remove-haskell: "true"
remove-codeql: "true"
remove-docker-images: "true"

- uses: actions/checkout@v3

- name: "Install Nix"
uses: cachix/install-nix-action@v20
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: "Install Cachix"
uses: cachix/cachix-action@v12
with:
name: workflow-nixos-config
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"

- name: "Build NixOS config ❄️"
run: |
nix build .#nixosConfigurations.dekomori.config.system.build.toplevel --accept-flake-config
build-mitama:
needs: build-system
runs-on: ubuntu-latest
strategy:
matrix:
flakeConfig:
- .#nixosConfigurations.mitama.config.system.build.toplevel

- name: "Check NixOS flake ❄️"
run: |
nix flake check --accept-flake-config --no-build
build-dekomori:
needs: build-system
runs-on: ubuntu-latest
strategy:
matrix:
flakeConfig:
- .#nixosConfigurations.dekomori.config.system.build.toplevel

0 comments on commit f8cc8d3

Please sign in to comment.