52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
name: Nix
|
|
|
|
on: push
|
|
|
|
# Setting the shell option, it will run 'bash --noprofile --norc -eo pipefail {0}'
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
|
|
build-static:
|
|
name: Build static Linux binary
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v20
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: surrealdb
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
extraPullNames: nix-community
|
|
- run: nix build .#static-binary
|
|
- run: ./result/bin/surreal help
|
|
|
|
build-docker:
|
|
name: Build Docker image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v20
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: surrealdb
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
extraPullNames: nix-community
|
|
- run: nix build .#docker-image
|
|
- run: docker load --input ./result
|
|
|
|
build-native-linux:
|
|
name: Build native Linux binary
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v20
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: surrealdb
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
extraPullNames: nix-community
|
|
- run: nix build .#x86_64-unknown-linux-gnu
|
|
- run: ./result/bin/surreal help
|