2021-01-25 18:26:27 +00:00
|
|
|
name: Build
|
|
|
|
on: [push, pull_request, release]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-05-07 14:44:13 +00:00
|
|
|
- uses: actions/checkout@v2.4.0
|
2021-01-25 18:26:27 +00:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
submodules: true
|
|
|
|
|
2023-05-07 14:44:13 +00:00
|
|
|
- uses: cachix/install-nix-action@v20
|
2021-01-25 18:26:27 +00:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
|
2023-05-07 14:44:13 +00:00
|
|
|
- uses: cachix/cachix-action@v12
|
2021-01-27 09:08:33 +00:00
|
|
|
with:
|
|
|
|
name: hs-dear-imgui
|
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
|
|
|
2023-05-07 14:44:13 +00:00
|
|
|
- run: nix-build --version
|
2021-01-27 09:08:33 +00:00
|
|
|
- run: nix-build -A hsPkgs.dear-imgui.components.exes
|