Skip to content

Commit 1679c39

Browse files
committed
Merge remote-tracking branch 'origin/main' into sanity-check-shims
2 parents 0148a0b + 2ce6db0 commit 1679c39

File tree

28 files changed

+397
-142
lines changed

28 files changed

+397
-142
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,17 @@ jobs:
1515
steps:
1616
- name: Check out code
1717
uses: actions/checkout@v3
18-
- name: Set up docker image
19-
run: docker build -t volta .
20-
working-directory: ./ci/docker
18+
- name: Set up docker buildx
19+
uses: docker/setup-buildx-action@v2
20+
- name: Build docker image
21+
uses: docker/build-push-action@v3
22+
with:
23+
cache-from: type=gha
24+
cache-to: type=gha,mode=max
25+
context: ./ci/docker
26+
push: false
27+
load: true
28+
tags: volta
2129
- name: Compile and package Volta
2230
run: docker run --volume ${PWD}:/root/workspace --workdir /root/workspace --rm --init --tty volta /root/workspace/ci/build-linux.sh volta-linux
2331
- name: Upload release artifact

0 commit comments

Comments
 (0)