1
0
Fork 0
nix-overlay/.github/workflows/build.yml

47 lines
1.3 KiB
YAML
Raw Normal View History

2022-08-05 20:38:23 +00:00
name: Build
on:
push:
branches: ['master']
2022-08-06 08:51:05 +00:00
schedule:
2023-05-16 20:13:30 +00:00
- cron: '10 8 * * *'
2022-08-06 08:51:05 +00:00
workflow_dispatch:
2022-08-05 20:38:23 +00:00
jobs:
2022-08-05 20:42:50 +00:00
build-x86_64-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
- name: Run the Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@v1
2023-02-15 14:05:15 +00:00
- uses: cachix/cachix-action@v12
2022-08-05 20:42:50 +00:00
with:
name: nifoc
2022-08-05 20:49:26 +00:00
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
2023-02-15 14:00:38 +00:00
- run: nix build '.#anonymous-overflow'
2022-11-23 21:56:52 +00:00
- run: nix build '.#fennel-ls'
2023-02-14 09:31:07 +00:00
- run: nix build '.#nitter-unstable'
2023-05-10 21:29:38 +00:00
- run: nix build '.#neovim-nightly'
2022-08-05 20:42:50 +00:00
- run: nix build '.#q'
2023-03-05 14:57:52 +00:00
- run: nix build '.#rimgo'
2023-05-23 00:04:06 +00:00
- run: nix build '.#vuetorrent'
2023-05-17 22:28:32 +00:00
- run: nix build '.#bdfr-browser'
2022-12-01 09:06:50 +00:00
- run: nix build '.#website-docs-nifoc-pw'
2022-08-05 20:42:50 +00:00
2023-04-23 22:12:33 +00:00
build-arm64-linux:
runs-on: buildjet-2vcpu-ubuntu-2204-arm
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
2023-04-23 22:12:33 +00:00
- uses: cachix/cachix-action@v12
with:
name: nifoc
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build '.#fennel-ls'
2023-05-10 21:29:38 +00:00
- run: nix build '.#neovim-nightly'
2023-04-23 22:12:33 +00:00
- run: nix build '.#q'
2023-06-06 14:46:20 +00:00
- run: nix build '.#weewx-proxy'