2022-08-05 20:38:23 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ['master']
|
2022-08-06 08:51:05 +00:00
|
|
|
schedule:
|
2023-09-16 15:43:50 +00:00
|
|
|
- cron: '20 2 * * *'
|
2022-08-05 20:38:23 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-09-16 15:43:50 +00:00
|
|
|
build-amd64-linux:
|
|
|
|
runs-on: ubuntu-latest-amd64
|
|
|
|
|
2022-08-05 20:42:50 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-06-27 07:37:39 +00:00
|
|
|
- name: Install Nix
|
2023-09-16 15:43:50 +00:00
|
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@v4
|
|
|
|
with:
|
|
|
|
init: none
|
|
|
|
planner: linux
|
|
|
|
github-token: null
|
|
|
|
- name: Setup Attic
|
|
|
|
uses: https://github.com/ryanccn/attic-action@v0
|
2022-08-05 20:42:50 +00:00
|
|
|
with:
|
2023-09-16 15:43:50 +00:00
|
|
|
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
|
|
|
|
cache: ${{ secrets.ATTIC_CACHE }}
|
|
|
|
token: ${{ secrets.ATTIC_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-09-21 14:31:45 +00:00
|
|
|
- run: nix build '.#headscale-ui'
|
2023-08-09 00:15:50 +00:00
|
|
|
- run: nix build '.#lexical'
|
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-08-18 10:32:31 +00:00
|
|
|
- run: nix build '.#rexit'
|
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-08-05 20:42:50 +00:00
|
|
|
|
2023-04-23 22:12:33 +00:00
|
|
|
build-arm64-linux:
|
2023-09-16 15:43:50 +00:00
|
|
|
runs-on: ubuntu-latest-arm64
|
|
|
|
|
2023-04-23 22:12:33 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-06-27 07:37:39 +00:00
|
|
|
- name: Install Nix
|
2023-09-16 15:43:50 +00:00
|
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@v4
|
|
|
|
with:
|
|
|
|
init: none
|
|
|
|
planner: linux
|
|
|
|
github-token: null
|
|
|
|
- name: Setup Attic
|
|
|
|
uses: https://github.com/ryanccn/attic-action@v0
|
2023-04-23 22:12:33 +00:00
|
|
|
with:
|
2023-09-16 15:43:50 +00:00
|
|
|
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
|
|
|
|
cache: ${{ secrets.ATTIC_CACHE }}
|
|
|
|
token: ${{ secrets.ATTIC_TOKEN }}
|
2023-04-23 22:12:33 +00:00
|
|
|
- run: nix build '.#fennel-ls'
|
2023-08-09 00:15:50 +00:00
|
|
|
- run: nix build '.#lexical'
|
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'
|