Skip to content

Commit

Permalink
update nix flakes, gh workflows and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Oct 10, 2024
1 parent c080678 commit 2c431a9
Show file tree
Hide file tree
Showing 8 changed files with 1,288 additions and 217 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: pre-release

on:
push:

jobs:
pre-release:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-linux
os: ubuntu-latest
- target: aarch64-linux
os: ubuntu-latest
- target: x86_64-windows
os: ubuntu-latest
- target: x86_64-darwin
os: macos-13
- target: aarch64-darwin
os: macos-14
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-24.05
enable_kvm: true
extra_nix_config: "experimental-features = nix-command flakes"
- name: Cache Nix store
uses: cachix/cachix-action@v15
with:
name: soywod
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
extraPullNames: nix-community
- name: Build release
run: |
nix build -L .#${{ matrix.target }}
nix run -L .#${{ matrix.target }} -- --version
- name: Upload release artifact (tarball)
uses: actions/upload-artifact@v4
with:
name: "himalaya.${{ matrix.target }}.tgz"
path: result/himalaya.tgz
- name: Upload release artifact (zip)
uses: actions/upload-artifact@v4
with:
name: "himalaya.${{ matrix.target }}.zip"
path: result/himalaya.zip
24 changes: 0 additions & 24 deletions .github/workflows/tests.yml

This file was deleted.

Loading

0 comments on commit 2c431a9

Please sign in to comment.