Skip to content

Commit 7cd9dea

Browse files
committed
fix ci
1 parent 577a63e commit 7cd9dea

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.github/buildomat/jobs/build-and-test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
#: "/work/debug/*",
99
#: "/work/release/*",
1010
#: ]
11+
#: access_repos = [
12+
#: "oxidecomputer/htq",
13+
#: ]
1114
#:
1215

1316
set -o errexit

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.sw*
33
out.rs
44
tags
5+
!.github

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codegen/htq/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ edition = "2021"
55

66
[dependencies]
77
p4 = { path = "../../p4" }
8-
#htq = { git = "https://github.com/oxidecomputer/htq", branch = "sector-001" }
9-
htq = { path = "/Users/ry/src/htq" }
8+
htq = { git = "https://github.com/oxidecomputer/htq", branch = "sector-001" }
9+
#htq = { path = "/Users/ry/src/htq" }
1010
thiserror = "1.0.63"

codegen/htq/src/expression.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ fn emit_extract_call(
318318
let target = ra
319319
.get(tgt.root())
320320
.ok_or(CodegenError::RegisterDoesNotExistForLval(tgt.clone()))?;
321-
let output = ra.alloc(&tgt.root());
321+
let output = ra.alloc(tgt.root());
322322

323323
let info = names
324324
.get(tgt.root())

0 commit comments

Comments
 (0)