Linux-SGX 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. pipeline {
  2. agent {
  3. dockerfile { filename 'Jenkinsfiles/ubuntu-16.04.dockerfile'
  4. label 'sgx_slave'
  5. args "-v /lib/modules:/lib/modules:ro -v /usr/src:/usr/src:ro -v /var/run/aesmd/aesm.socket:/var/run/aesmd/aesm.socket --device=/dev/gsgx:/dev/gsgx --device=/dev/isgx:/dev/isgx"
  6. }
  7. }
  8. stages {
  9. stage('Build') {
  10. steps {
  11. sh '''
  12. cd Pal/src/host/Linux-SGX/signer/ && openssl genrsa -3 -out enclave-key.pem 3072
  13. '''
  14. sh '''
  15. cd /opt/intel
  16. git clone https://github.com/01org/linux-sgx-driver.git
  17. cd linux-sgx-driver
  18. git checkout sgx_driver_1.9
  19. make
  20. '''
  21. sh '''
  22. cd Pal/src/host/Linux-SGX/sgx-driver
  23. ISGX_DRIVER_PATH=/opt/intel/linux-sgx-driver ISGX_DRIVER_VERSION=1.9 make
  24. '''
  25. sh '''
  26. make SGX=1
  27. '''
  28. sh '''
  29. make SGX_RUN=1
  30. '''
  31. }
  32. }
  33. stage('Test') {
  34. steps {
  35. /*
  36. timeout(time: 15, unit: 'MINUTES') {
  37. sh '''
  38. cd Pal/regression
  39. make SGX=1
  40. make SGX_RUN=1
  41. make SGX_RUN=1 KEEP_LOG=1 regression
  42. '''
  43. }
  44. */
  45. timeout(time: 5, unit: 'MINUTES') {
  46. sh '''
  47. cd LibOS/shim/test/regression
  48. make SGX=1
  49. make SGX_RUN=1
  50. make SGX_RUN=1 regression
  51. '''
  52. }
  53. timeout(time: 5, unit: 'MINUTES') {
  54. sh '''
  55. cd LibOS/shim/test/apps/python
  56. make SGX=1
  57. make SGX_RUN=1
  58. make SGX_RUN=1 regression
  59. '''
  60. }
  61. timeout(time: 5, unit: 'MINUTES') {
  62. sh '''
  63. cd LibOS/shim/test/apps/bash
  64. make SGX=1
  65. make SGX_RUN=1
  66. make SGX_RUN=1 regression
  67. '''
  68. }
  69. timeout(time: 5, unit: 'MINUTES') {
  70. sh '''
  71. cd LibOS/shim/test/apps/gcc
  72. make SGX=1
  73. make SGX_RUN=1
  74. make SGX_RUN=1 regression
  75. '''
  76. }
  77. timeout(time: 15, unit: 'MINUTES') {
  78. sh '''
  79. cd LibOS/shim/test/apps/lmbench
  80. make SGX=1
  81. make SGX_RUN=1
  82. make SGX_RUN=1 regression
  83. '''
  84. }
  85. sh '''
  86. cd LibOS/shim/test/apps/lighttpd
  87. make SGX=1
  88. make SGX_RUN=1
  89. make SGX_RUN=1 start-graphene-server &
  90. sleep 10
  91. ./benchmark-http.sh `hostname -I|tr -d '[:space:]'`:8000
  92. '''
  93. /*
  94. sh '''
  95. cd LibOS/shim/test/apps/apache
  96. make SGX=1
  97. make SGX_RUN=1
  98. make SGX_RUN=1 start-graphene-server &
  99. sleep 15 && ./benchmark-http.sh `hostname -I|tr -d '[:space:]'`:8001
  100. '''
  101. */
  102. }
  103. }
  104. stage('Deploy') {
  105. steps {
  106. sh 'echo Deploying code'
  107. }
  108. }
  109. }
  110. post {
  111. success {
  112. echo 'Deployment successful'
  113. }
  114. failure {
  115. echo 'Failure while on the pipeline'
  116. }
  117. unstable {
  118. echo 'Pipeline marked as "unstable"'
  119. }
  120. }
  121. }