Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
pcaskey committed Nov 9, 2022
1 parent 899fcb0 commit 27a056c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ pipeline {
script {
try {
echo "Starting tests..."
sh 'bin/test.sh 2>&1 | tee debug ; test ${PIPESTATUS[0]} -eq 0'
sh "bin/test.sh 2>&1 | tee debug ; test ${PIPESTATUS[0]} -eq 0"
// ===> need bats, webisoget on jenkins node, also need to send/set correct image name
// echo "Skipping tests for now"
} catch (error) {
Expand Down
4 changes: 2 additions & 2 deletions tests/fulltest.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
echo "Starting fulltest.sh script..."

. ./common.bash

Expand Down Expand Up @@ -45,8 +46,7 @@ rm -f ./lastpage.txt
#fi

# replace FROM line in IdP Dockerfile to newly-built local image
# sed -i "/FROM/c\FROM ${imagename}_${tag}" ../test-compose/idp/Dockerfile
sed -i "/FROM/c\FROM shib-idp_4.2.1_20221101_rocky8_multiarch_dev" ../test-compose/idp/Dockerfile
sed -i "s*FROM i2incommon/shib-idp:latest*FROM shib-idp_4.2.1_20221101_rocky8_multiarch_dev*g" ../test-compose/idp/Dockerfile

echo "Attempting full-cycle test..."
#webisoget -verbose -out ./lastpage.txt -formfile ./sptest.login -url https://sptest.example.edu:8443/secure/index.php
Expand Down

0 comments on commit 27a056c

Please sign in to comment.