Skip to content

Commit e3157ab

Browse files
committed
Merge branch 'main' into unify
2 parents 97257b7 + 7e979f0 commit e3157ab

File tree

114 files changed

+5105
-1087
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+5105
-1087
lines changed

.github/buildomat/jobs/host-image.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,11 @@ rustc --version
4242

4343
TOP=$PWD
4444

45-
source "$TOP/tools/helios_version"
4645
source "$TOP/tools/include/force-git-over-https.sh"
4746

4847
# Checkout helios at a pinned commit into /work/helios
4948
git clone https://github.com/oxidecomputer/helios.git /work/helios
5049
cd /work/helios
51-
git checkout "$COMMIT"
5250

5351
# TODO: Consider importing zones here too?
5452

.github/buildomat/jobs/trampoline-image.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,11 @@ rustc --version
4242

4343
TOP=$PWD
4444

45-
source "$TOP/tools/helios_version"
4645
source "$TOP/tools/include/force-git-over-https.sh"
4746

4847
# Checkout helios at a pinned commit into /work/helios
4948
git clone https://github.com/oxidecomputer/helios.git /work/helios
5049
cd /work/helios
51-
git checkout "$COMMIT"
5250

5351
cd "$TOP"
5452
./tools/build-host-image.sh -R \

.github/buildomat/jobs/tuf-repo.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,15 @@ for noun in gimlet-c psc-b sidecar-b; do
145145
tufaceous_kind=${tufaceous_kind//sidecar/switch}_sp
146146
job_name=dist-ubuntu-latest-$noun
147147
url=$(/opt/ooce/bin/jq --arg name "$job_name" -r '.artifacts[] | select(.name == $name) | .archive_download_url' <<<"$artifacts")
148-
curl --netrc -fsSL -o /work/$job_name.zip "$url"
148+
curl --netrc -fsSL -o $job_name.zip "$url"
149+
unzip $job_name.zip
149150
cat >>/work/manifest.toml <<EOF
150151
[artifact.$tufaceous_kind]
151152
name = "$tufaceous_kind"
152153
version = "$HUBRIS_VERSION"
153154
[artifact.$tufaceous_kind.source]
154155
kind = "file"
155-
path = "/work/$job_name.zip"
156+
path = "$PWD/build-$noun-image-default.zip"
156157
EOF
157158
done
158159

0 commit comments

Comments
 (0)