File tree Expand file tree Collapse file tree 2 files changed +14
-7
lines changed
Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 1616 type : string
1717 required : true
1818 image-tag :
19- description : " Tag of docker image to sconify "
19+ description : " Tag of docker image to sconify"
2020 type : string
2121 required : true
2222 scontain-username :
5151 description : " Enclave heap size (default 1G)"
5252 type : string
5353 default : " 1G"
54+ mprotect :
55+ description : " Scone mprotect mode (0:disable; 1:enable; default 0)"
56+ type : number
57+ default : 0
5458 dlopen :
55- description : " Scoen dlopen mode (default 1 )"
59+ description : " Scone dlopen mode (0:disable; 1:enable; default 0 )"
5660 type : number
57- default : 1
61+ default : 0
5862 sconify-debug :
5963 description : " Create Scone debug image (default true)"
6064 type : boolean
Original file line number Diff line number Diff line change @@ -36,10 +36,12 @@ The workflow performs the following actions:
3636| ** fs-file** | [ SCONE] Path of files to add to the binary file system (use multiline to add multiple files) | No | - |
3737| ** host-path** | [ SCONE] Host path, served directly from the host file system (use multiline to add multiple path) | No | - |
3838| ** heap** | [ SCONE] Enclave heap size | No | 1G |
39- | ** dlopen** | [ SCONE] Scone dlopen mode (0: disable ; 1: enable and require authentication; 2: debug only) | No | 1 |
40- | ** sconify-debug** | Create Scone debug image | No | true |
41- | ** sconify-prod** | Create Scone production image | No | true |
42- | ** runner** | Runner to use (overrides ` runs-on ` ) ⚠️ the specified runner must feature Ubuntu OS and docker CE | No | ubuntu-latest |
39+ | ** dlopen** | [ SCONE] Scone dlopen mode (0: disable ; 1: enable ) | No | 0 |
40+ | ** mprotect** | [ SCONE] Scone mprotect mode (0: disable ; 1: enable ) | No | 0 |
41+
42+ | ** sconify-debug** | Create Scone debug image | No | true |
43+ | ** sconify-prod** | Create Scone production image | No | true |
44+ | ** runner** | Runner to use (overrides ` runs-on ` ) ⚠️ the specified runner must feature Ubuntu OS and docker CE | No | ubuntu-latest |
4345
4446> ℹ️ for more details about [ SCONE] options see [ Scone's documentation] ( https://sconedocs.github.io/ee_sconify_image/#all-supported-options )
4547
@@ -109,6 +111,7 @@ jobs:
109111 fs-dir : /app
110112 heap : 1G
111113 dlopen : 1
114+ mprotect : 1
112115 docker-username : ${{ vars.DOCKER_USERNAME }}
113116 scontain-username : ${{ vars.SCONTAIN_USERNAME }}
114117 secrets :
You can’t perform that action at this time.
0 commit comments