mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-08-01 12:41:52 -07:00
With "nix build", just the build of xmonad-contrib itself takes 3 minutes (it builds twice, the second build with profiling enabled), so it ends up being almost 6 minutes in total, making this workflow the slowest one.
29 lines
951 B
YAML
29 lines
951 B
YAML
name: Nix
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Nix Flake - Linux
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v13
|
|
with:
|
|
install_url: https://nixos-nix-install-tests.cachix.org/serve/i6laym9jw3wg9mw6ncyrk6gjx4l34vvx/install
|
|
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
- name: Clone project
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
# "nix build" builds with full optimization and includes a profiling
|
|
# build, so just the build of xmonad-contrib itself takes 3 minutes.
|
|
# As a workaround, we invoke cabal manually here.
|
|
run: nix develop -c cabal v2-build -O0 -j
|