Compare commits

...

4 Commits

Author SHA1 Message Date
6faef6e0ac
go-qt: bump qt version 2023-02-23 13:39:21 +11:00
29516dc3d8
ci: allow style checks to fail 2023-02-23 13:37:14 +11:00
github-actions[bot]
a2f24f4591
flake: update inputs (#24)
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/bd4dffcdb7c577d74745bd1eff6230172bd176d5' (2022-04-17)
  → 'github:NixOS/nixpkgs/f5dad40450d272a1ea2413f4a67ac08760649e89' (2023-02-22)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-02-23 13:23:56 +11:00
8f34b7a6fa
ci: adjust update job messages 2023-02-23 13:23:04 +11:00
4 changed files with 8 additions and 10 deletions

View File

@ -18,6 +18,7 @@ jobs:
- name: Check ${{ matrix.check }} - name: Check ${{ matrix.check }}
# Depends on nixos/nix#7759 to simply `nix flake check` # Depends on nixos/nix#7759 to simply `nix flake check`
run: nix run .#checks.$(nix eval --raw --impure --expr "builtins.currentSystem").${{ matrix.check }} run: nix run .#checks.$(nix eval --raw --impure --expr "builtins.currentSystem").${{ matrix.check }}
continue-on-error: true
build-and-update: build-and-update:
strategy: strategy:

View File

@ -9,10 +9,6 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
fail-fast: false fail-fast: false
matrix:
input:
- nixpkgs
- flake-utils
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
@ -20,8 +16,9 @@ jobs:
with: with:
extra_nix_config: | extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: "Update input ${{ matrix.input }}" - name: "flake: update inputs"
uses: DeterminateSystems/update-flake-lock@v16 uses: DeterminateSystems/update-flake-lock@v16
with: with:
inputs: ${{ matrix.input }} pr-title: "flake: update inputs"
pr-labels: dependencies pr-labels: dependencies
commit-msg: "flake: update inputs"

6
flake.lock generated
View File

@ -17,11 +17,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1650194139, "lastModified": 1677080879,
"narHash": "sha256-kurZsqeOw5fpqA/Ig+8tHvbjwzs5P9AE6WUKOX1m6qM=", "narHash": "sha256-0SjW4/d3Rkw6C7hHZ5lxT4r6Pw9vzQb6Il6zYWwe2Bo=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "bd4dffcdb7c577d74745bd1eff6230172bd176d5", "rev": "f5dad40450d272a1ea2413f4a67ac08760649e89",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -2,7 +2,7 @@
rec { rec {
goModules = pkgs.recurseIntoAttrs rec { goModules = pkgs.recurseIntoAttrs rec {
qt = pkgs.libsForQt512.callPackage ../development/go-modules/qt { }; qt = pkgs.libsForQt5.callPackage ../development/go-modules/qt { };
}; };
# A functional Jetbrains IDE-with-plugins package set. # A functional Jetbrains IDE-with-plugins package set.