Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
strategy:
fail-fast: false
matrix:
runner: [normal, MacM1] # MacM1 / normal are self-hosted
runner: [rvwork-m2-1, rvwork-m2-2] # MacM1 / normal are self-hosted
runs-on: ${{ matrix.runner }}
timeout-minutes: 60
steps:
Expand Down Expand Up @@ -103,6 +103,10 @@ jobs:
run: |
set -euxo pipefail
nix --version

# debugging
ls -l $(which nix)

JQ=$(nix-build '<nixpkgs>' -A jq --no-link)/bin/jq
KIMP_BIN=$(nix build .#kimp --print-build-logs --json | $JQ -r '.[].outputs | to_entries[].value')/bin
echo $KIMP_BIN >> $GITHUB_PATH
Expand Down
2 changes: 1 addition & 1 deletion deps/k_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.280
7.1.288
16 changes: 8 additions & 8 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
nixpkgs.follows = "rv-nix-tools/nixpkgs";

flake-utils.url = "github:numtide/flake-utils";
k-framework.url = "github:runtimeverification/k/v7.1.280";
k-framework.url = "github:runtimeverification/k/v7.1.288";
k-framework.inputs.nixpkgs.follows = "nixpkgs";
uv2nix.url = "github:pyproject-nix/uv2nix/680e2f8e637bc79b84268949d2f2b2f5e5f1d81c";
# stale nixpkgs is missing the alias `lib.match` -> `builtins.match`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = ""
readme = "README.md"
requires-python = "~=3.10"
dependencies = [
"kframework==7.1.280",
"kframework==7.1.288",
]

[[project.authors]]
Expand Down
Loading