Skip to content
/ bits Public

Commit 9dba09a

Browse files
committed
Fix deps hash for x86_64 natives and show build errors
1 parent a0fffc9 commit 9dba09a

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,12 @@ jobs:
123123
run: nix profile install nixpkgs#devenv
124124

125125
- name: Build container
126+
run: devenv build outputs.${{ matrix.output }}
127+
128+
- name: Get output path
126129
id: build
127130
run: |
128-
image_path=$(devenv build outputs.${{ matrix.output }} 2>/dev/null)
131+
image_path=$(devenv build outputs.${{ matrix.output }})
129132
echo "image_path=$image_path" >> "$GITHUB_OUTPUT"
130133
131134
- name: Load and tag image

pkgs/bits-uberjar/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
# Fixed-output derivation hash for deps. Update when deps.edn changes.
3030
# To get new hash: change to lib.fakeHash, build, copy hash from error.
31-
depsHash = "sha256-wCg6+hsNaoMwd0MyisMLofl+cpiPtuZRqTbNZMGrIFA=";
31+
depsHash = "sha256-u9b0YHdQ+7cT/pWln5F5+uryTV9D7eqx4sdmgyDAt28=";
3232

3333
# ---------------------------------------------------------------------------
3434
# Derived values

0 commit comments

Comments
 (0)