Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/actionlint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
self-hosted-runner:
labels:
- nscloud-ubuntu-20.04-amd64-8x8-with-cache
- nscloud-cache-tag-obscuravpn-api
- nscloud-cache-size-20gb
- nix
21 changes: 2 additions & 19 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,21 @@
name: Checks

on:
push: {}
workflow_dispatch:
pull_request:
branches:
- '**'
push:
branches:
- 'v0'

jobs:
build_all:
name: Build All
runs-on:
# https://namespace.so/docs/features/faster-github-actions#using-runner-labels
- nscloud-ubuntu-20.04-amd64-8x8-with-cache
- nscloud-cache-tag-obscuravpn-api
- nscloud-cache-size-20gb
runs-on: [nix]
steps:
- name: git checkout
uses: actions/checkout@v4

- uses: namespacelabs/nscloud-cache-action@v1
with:
path: /nix

- name: Install Nix
uses: cachix/install-nix-action@v31

- name: Build Nix
shell: bash
run: |
nix flake check \
--experimental-features "flakes nix-command" \
--keep-going \
--no-update-lock-file \
--print-build-logs \
Expand Down