Linux-SGX 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. sh '''
  46. cd LibOS/shim/test/regression
  47. make SGX=1
  48. make SGX_RUN=1
  49. make SGX_RUN=1 regression
  50. '''
  51. sh '''
  52. cd LibOS/shim/test/apps/python
  53. make SGX=1
  54. make SGX_RUN=1
  55. make SGX_RUN=1 regression
  56. '''
  57. timeout(time: 5, unit: 'MINUTES') {
  58. sh '''
  59. cd LibOS/shim/test/apps/gcc
  60. make SGX=1
  61. make SGX_RUN=1
  62. make SGX_RUN=1 regression
  63. '''
  64. }
  65. timeout(time: 15, unit: 'MINUTES') {
  66. sh '''
  67. cd LibOS/shim/test/apps/lmbench
  68. make SGX=1
  69. make SGX_RUN=1
  70. make SGX_RUN=1 regression
  71. '''
  72. }
  73. sh '''
  74. cd LibOS/shim/test/apps/lighttpd
  75. make SGX=1
  76. make SGX_RUN=1
  77. make SGX_RUN=1 start-graphene-server &
  78. sleep 10
  79. ./benchmark-http.sh `hostname -I|tr -d '[:space:]'`:8000
  80. '''
  81. /*
  82. sh '''
  83. cd LibOS/shim/test/apps/apache
  84. make SGX=1
  85. make SGX_RUN=1
  86. make SGX_RUN=1 start-graphene-server &
  87. sleep 15 && ./benchmark-http.sh `hostname -I|tr -d '[:space:]'`:8001
  88. '''
  89. */
  90. }
  91. }
  92. stage('Deploy') {
  93. steps {
  94. sh 'echo Deploying code'
  95. }
  96. }
  97. }
  98. post {
  99. success {
  100. echo 'Deployment successful'
  101. }
  102. failure {
  103. echo 'Failure while on the pipeline'
  104. }
  105. unstable {
  106. echo 'Pipeline marked as "unstable"'
  107. }
  108. }
  109. }