Skip to content

Commit

Permalink
[CI] Change default SGX driver to upstream
Browse files Browse the repository at this point in the history
Signed-off-by: Wojtek Porczyk <[email protected]>
  • Loading branch information
woju authored and mkow committed Jun 25, 2024
1 parent ca6ef92 commit 12e5d9a
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ci/lib/stage-build-sgx.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ stage('build') {
}

if (env.SGX_DRIVER == null) {
env.SGX_DRIVER = 'oot'
env.SGX_DRIVER = 'upstream'
}
if (env.SGX_DRIVER == 'oot') {
sh '''
Expand Down
1 change: 0 additions & 1 deletion .ci/linux-sgx-edmm.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ node('sgx-edmm && aesni') {

env.AVX = '1' // EDMM-capable machines in our CI always have AVX
env.SGX = '1'
env.SGX_DRIVER = 'upstream'
env.EDMM = '1'
env.RA_TYPE = 'dcap'

Expand Down
1 change: 1 addition & 0 deletions .ci/linux-sgx-sanitizers.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ node('sgx_slave_2.6 && aesni') {
checkout scm

env.SGX = '1'
env.SGX_DRIVER = 'oot'

load '.ci/lib/config-docker.jenkinsfile'
docker.build(
Expand Down
1 change: 1 addition & 0 deletions .ci/linux-sgx-ubuntu20.04-gcc-release-apps.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ node('sgx_slave_2.6 && aesni') {
checkout scm

env.SGX = '1'
env.SGX_DRIVER = 'oot'

load '.ci/lib/config-docker.jenkinsfile'
docker.build(
Expand Down
1 change: 1 addition & 0 deletions .ci/linux-sgx-ubuntu20.04-gcc-release.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ node('sgx_slave_2.6 && aesni') {
checkout scm

env.SGX = '1'
env.SGX_DRIVER = 'oot'

load '.ci/lib/config-docker.jenkinsfile'
docker.build(
Expand Down
1 change: 1 addition & 0 deletions .ci/linux-sgx-ubuntu20.04-musl.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ node('sgx_slave_2.6 && aesni') {
checkout scm

env.SGX = '1'
env.SGX_DRIVER = 'oot'
env.GRAMINE_MUSL = '1'

load '.ci/lib/config-docker.jenkinsfile'
Expand Down
1 change: 0 additions & 1 deletion .ci/linux-sgx-ubuntu22.04-gcc-release.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ node('sgx') {
checkout scm

env.SGX = '1'
env.SGX_DRIVER = 'upstream'

load '.ci/lib/config-docker.jenkinsfile'
docker.build(
Expand Down
1 change: 0 additions & 1 deletion .ci/linux-sgx-ubuntu24.04-gcc-release.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ node('sgx') {
checkout scm

env.SGX = '1'
env.SGX_DRIVER = 'upstream'

load '.ci/lib/config-docker.jenkinsfile'
docker.build(
Expand Down

0 comments on commit 12e5d9a

Please sign in to comment.