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
|
2023-03-02 09:08:58 +00:00
|
|
|
- uses: cachix/install-nix-action@v20
|
2022-08-05 20:42:50 +00:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixpkgs-unstable
|
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'
|
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
|
|
|
|
- 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'
|
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'
|