Jalil David Salamé Messina
aae8a6d464
All checks were successful
/ check (push) Successful in 49s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 19s
/ build (nvim) (push) Successful in 9s
/ report-size (push) Has been skipped
/ check (pull_request) Has been skipped
/ build (audiomenu) (pull_request) Has been skipped
/ build (docs) (pull_request) Has been skipped
/ build (jpassmenu) (pull_request) Has been skipped
/ build (nixosConfigurations.vm.config.system.build.toplevel) (pull_request) Has been skipped
/ build (nvim) (pull_request) Has been skipped
/ report-size (pull_request) Has been skipped
Added as a comment to the current pull request
38 lines
990 B
YAML
38 lines
990 B
YAML
on:
|
|
push:
|
|
pull_request:
|
|
jobs:
|
|
check:
|
|
runs-on: nixos
|
|
needs: build
|
|
if: github.event_name == 'push'
|
|
steps:
|
|
- uses: "https://code.forgejo.org/actions/checkout@v4"
|
|
- run: nix --version
|
|
- name: Run Checks
|
|
run: nix flake check --keep-going --verbose
|
|
build:
|
|
runs-on: nixos
|
|
if: github.event_name == 'push'
|
|
strategy:
|
|
matrix:
|
|
target:
|
|
- audiomenu
|
|
- docs
|
|
- jpassmenu
|
|
- nixosConfigurations.vm.config.system.build.toplevel
|
|
- nvim
|
|
steps:
|
|
- uses: "https://code.forgejo.org/actions/checkout@v4"
|
|
- run: nix --version
|
|
- name: Build target
|
|
run: nix build --print-build-logs '.#${{ matrix.target }}'
|
|
report-size:
|
|
runs-on: nixos
|
|
needs: build
|
|
if: github.event_name == 'pull_request'
|
|
steps:
|
|
- uses: "https://git.salame.cl/actions/checkout@v4"
|
|
- run: nix --version
|
|
- name: Report Size
|
|
run: ci-scripts/report-size.sh
|