-
Notifications
You must be signed in to change notification settings - Fork 27
63 lines (57 loc) · 1.68 KB
/
test-ci-sw.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Test CI SW mode
on:
push:
branches: [ develop, '**-release']
workflow_dispatch:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
test-ci-sw:
runs-on: ubuntu-22.04
env:
SGX_MODE: SW
VERSION: "1.0.4"
PRODUCTION_MODE: false
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: false
swap-storage: true
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Test Image
uses: docker/build-push-action@v4
with:
file: ./docker/test-sw.Dockerfile
context: .
load: true
tags: test-sw
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
SGX_MODE=SW
ENCLAVE_HOME="/usr/lib/"
PRODUCTION_MODE=false
target: compile-chain
- name: Run Test Image
run: |
docker run -e CI=true -v $GITHUB_WORKSPACE/build:/build test-sw