Browse Source

[LibOS] test/apps: Allow SSL/TLS connections in Apache httpd

Dmitrii Kuvaiskii 4 years ago
parent
commit
bca88eb94d

+ 1 - 0
Jenkinsfiles/Linux

@@ -107,6 +107,7 @@ pipeline {
                             make start-graphene-server &
                             sleep 1
                             LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh 127.0.0.1:8001
+                            LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh https://127.0.0.1:8443
                             '''
                         sh '''
                            cd "$(./Scripts/clean-check-test-copy)"

+ 1 - 0
Jenkinsfiles/Linux-18.04

@@ -105,6 +105,7 @@ pipeline {
                             make start-graphene-server &
                             sleep 1
                             LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh 127.0.0.1:8001
+                            LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh https://127.0.0.1:8443
                             '''
                         sh '''
                            cd "$(./Scripts/clean-check-test-copy)"

+ 1 - 0
Jenkinsfiles/Linux-Debug

@@ -106,6 +106,7 @@ pipeline {
                             make start-graphene-server &
                             sleep 1
                             LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh 127.0.0.1:8001
+                            LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh https://127.0.0.1:8443
                             '''
                         sh '''
                            cd "$(./Scripts/clean-check-test-copy)"

+ 1 - 0
Jenkinsfiles/Linux-Debug-18.04

@@ -105,6 +105,7 @@ pipeline {
                             make start-graphene-server &
                             sleep 1
                             LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh 127.0.0.1:8001
+                            LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh https://127.0.0.1:8443
                             '''
                         sh '''
                            cd "$(./Scripts/clean-check-test-copy)"

+ 1 - 0
Jenkinsfiles/Linux-SGX-18.04-apps

@@ -114,6 +114,7 @@ pipeline {
                             make SGX=1 start-graphene-server &
                             sleep 30
                             LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh 127.0.0.1:8001
+                            LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh https://127.0.0.1:8443
                             '''
                         sh '''
                            cd "$(./Scripts/clean-check-test-copy)"

+ 1 - 0
Jenkinsfiles/Linux-SGX-apps

@@ -111,6 +111,7 @@ pipeline {
                             make SGX=1 start-graphene-server &
                             sleep 30
                             LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh 127.0.0.1:8001
+                            LOOP=1 CONCURRENCY_LIST="1 32" ./benchmark-http.sh https://127.0.0.1:8443
                             '''
                         sh '''
                            cd "$(./Scripts/clean-check-test-copy)"

+ 1 - 0
Jenkinsfiles/ubuntu-16.04.dockerfile

@@ -22,6 +22,7 @@ RUN apt-get update \
        libpcre2-dev \
        libpcre3-dev \
        libprotobuf-c-dev \
+       libssl-dev \
        libxml2-dev \
        linux-headers-4.4.0-161-generic \
        net-tools \

+ 1 - 0
Jenkinsfiles/ubuntu-18.04.dockerfile

@@ -22,6 +22,7 @@ RUN apt-get update && env DEBIAN_FRONTEND=noninteractive apt-get install -y \
     libpcre2-dev \
     libpcre3-dev \
     libprotobuf-c-dev \
+    libssl-dev \
     libxml2-dev \
     linux-headers-4.15.0-20-generic \
     net-tools \

+ 1 - 1
LibOS/shim/test/apps

@@ -1 +1 @@
-Subproject commit 5f77829328eb03e32b6d3a500ed9c61f0f3b4b66
+Subproject commit a92e3e112fe75634912b8d32cc4c6a2d772673fb