1
0
Fork 0

ci: use faster nix build
All checks were successful
Build / build-amd64-linux (push) Successful in 1m43s
Build / build-arm64-linux (push) Successful in 3m12s

This commit is contained in:
Daniel Kempkens 2023-12-05 21:20:06 +01:00
parent c50f961fa4
commit 159e2edaa7
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -8,56 +8,70 @@ on:
jobs:
build-amd64-linux:
runs-on: ubuntu-latest-amd64
runs-on: nix-amd64
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Install Nix
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
with:
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
cache: ${{ secrets.ATTIC_CACHE }}
token: ${{ secrets.ATTIC_TOKEN }}
- run: nix build '.#anonymous-overflow'
- run: nix build '.#bulk-downloader-for-reddit'
- run: nix build '.#fennel-ls'
- run: nix build '.#headscale-ui'
- run: nix build '.#lexical'
- run: nix build '.#neovim-nightly'
- run: nix build '.#q'
- run: nix build '.#rimgo'
- run: nix build '.#rexit'
- run: nix build '.#vuetorrent'
- name: Cache Login
run: |
echo "Logging in ..."
attic login --set-default attic ${{ secrets.ATTIC_ENDPOINT }} ${{ secrets.ATTIC_TOKEN }}
- run: |
nix build '.#anonymous-overflow'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#bulk-downloader-for-reddit'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#fennel-ls'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#headscale-ui'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#lexical'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#neovim-nightly'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#q'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#rimgo'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#rexit'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#vuetorrent'
attic push ${{ secrets.ATTIC_CACHE }} ./result
build-arm64-linux:
runs-on: ubuntu-latest-arm64
runs-on: nix-arm64
steps:
- uses: actions/checkout@v4
with:
ref: master
- name: Install Nix
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
with:
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
cache: ${{ secrets.ATTIC_CACHE }}
token: ${{ secrets.ATTIC_TOKEN }}
- run: nix build '.#fennel-ls'
- run: nix build '.#lexical'
- run: nix build '.#neovim-nightly'
- run: nix build '.#q'
- run: nix build '.#weewx-proxy'
- name: Cache Login
run: |
echo "Logging in ..."
attic login --set-default attic ${{ secrets.ATTIC_ENDPOINT }} ${{ secrets.ATTIC_TOKEN }}
- run: |
nix build '.#fennel-ls'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#lexical'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#neovim-nightly'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#q'
attic push ${{ secrets.ATTIC_CACHE }} ./result
- run: |
nix build '.#weewx-proxy'
attic push ${{ secrets.ATTIC_CACHE }} ./result