-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build bitacross hw worker docker image
- Loading branch information
1 parent
2769419
commit 98ebb35
Showing
2 changed files
with
72 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Build bitacross-worker | ||
|
||
on: push | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
DOCKER_BUILDKIT: 1 | ||
|
||
jobs: | ||
build-worker: | ||
runs-on: tee-prod-builder | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Build local builder | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: bitacross-worker/build.Dockerfile | ||
tags: local-builder:latest | ||
target: builder | ||
build-args: | | ||
WORKER_MODE_ARG=offchain-worker | ||
SGX_MODE=HW | ||
ADDITIONAL_FEATURES_ARG= | ||
IMAGE_FOR_RELEASE=true | ||
- name: Build worker | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: bitacross-worker/build.Dockerfile | ||
tags: litentry/bitacross-worker:latest | ||
target: deployed-worker | ||
|
||
- name: Build cli | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: bitacross-worker/build.Dockerfile | ||
tags: litentry/bitacross-cli:latest | ||
target: deployed-client | ||
|
||
- name: Save docker images | ||
run: docker save litentry/bitacross-worker:latest litentry/bitacross-cli:latest | gzip > bitacross-worker.tar.gz | ||
|
||
- name: Upload docker images | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: bitacross-worker | ||
path: bitacross-worker.tar.gz | ||
if-no-files-found: error | ||
|
||
- name: Fail early | ||
if: failure() | ||
uses: andymckay/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters