Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/avh4/gi-gtk-declarative int…
Browse files Browse the repository at this point in the history
…o avh4-main
  • Loading branch information
cblp committed Dec 2, 2023
2 parents 8002648 + 12385c0 commit 8e7e6a5
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 420 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
ghc:
- ghc884
- ghc923
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v12
Expand All @@ -13,6 +18,6 @@ jobs:
name: gi-gtk-declarative
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- name: 'Build and Test Libraries and Examples'
run: nix-build -j2 --arg doCheck true
run: nix-build -j2 --arg compiler \"${{ matrix.ghc }}\" --arg doCheck true
- name: 'Build Docs'
run: nix-shell -j2 --run 'cd docs && mkdocs build'
run: nix-shell -j2 --arg compiler \"${{ matrix.ghc }}\" --run 'cd docs && mkdocs build'
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs ? import ./nixpkgs.nix, compiler ? "ghc883", doBenchmark ? false, doCheck ? false }:
{ pkgs ? import ./nixpkgs.nix, compiler ? "ghc884", doBenchmark ? false, doCheck ? false }:
rec {
docs = import ./docs/requirements.nix { inherit pkgs; };
gi-gtk-declarative = (import ./gi-gtk-declarative { inherit compiler doBenchmark doCheck pkgs; }).gi-gtk-declarative;
Expand Down
Loading

0 comments on commit 8e7e6a5

Please sign in to comment.