[CICD] - Adding gitea pipeline to build clox
Some checks failed
build / test (push) Has been cancelled
Some checks failed
build / test (push) Has been cancelled
This commit is contained in:
parent
59ba0f61b4
commit
f2128a9512
16
.gitea/workflows/build.yaml
Normal file
16
.gitea/workflows/build.yaml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
name: build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: nix-runner
|
||||||
|
steps:
|
||||||
|
# optional: Push the results to a cache
|
||||||
|
- uses: https://github.com/cachix/cachix-action@v12
|
||||||
|
with:
|
||||||
|
name: local-cache
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: nix shell --run "cd clox && make"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user