46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: ['master']
|
|
schedule:
|
|
- cron: '10 8 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-x86_64-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v20
|
|
with:
|
|
nix_path: nixpkgs=channel:nixpkgs-unstable
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: nifoc
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- run: nix build '.#anonymous-overflow'
|
|
- run: nix build '.#fennel-ls'
|
|
- run: nix build '.#nitter-unstable'
|
|
- run: nix build '.#neovim-nightly'
|
|
- run: nix build '.#q'
|
|
- run: nix build '.#rimgo'
|
|
- run: nix build '.#vuetorrent'
|
|
- run: nix build '.#bdfr-browser'
|
|
- run: nix build '.#website-docs-nifoc-pw'
|
|
|
|
build-arm64-linux:
|
|
runs-on: buildjet-2vcpu-ubuntu-2204-arm
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v20
|
|
with:
|
|
nix_path: nixpkgs=channel:nixpkgs-unstable
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: nifoc
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- run: nix build '.#fennel-ls'
|
|
- run: nix build '.#neovim-nightly'
|
|
- run: nix build '.#q'
|
|
- run: nix build '.#weewx-proxy'
|