Merge pull request #39 from cesarhernandezgt/tomcat-10.0.x-TT.x-patch… #105
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tomcat-10.0.x-TT.x | |
on: | |
push: | |
branches: | |
- tomcat-10.0.x-TT.x | |
pull_request: | |
branches: | |
- tomcat-10.0.x-TT.x | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup jdk 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: donwload ant | |
run: curl https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.13-bin.zip --output ant9.zip | |
- name: unzip ant 9 | |
run: unzip -qq ant9.zip | |
- name: default os ant version to 1.10.13 | |
run: sudo cp -a apache-ant-1.10.13/. $ANT_HOME | |
- name: download libraries | |
run: curl https://support-delivery.s3.amazonaws.com/tomcat7-build-libs.zip --output tomcat7-build-libs-.zip | |
- name: extract libs | |
run: unzip -qq tomcat7-build-libs-.zip -d /home/runner/ | |
- name: ant_build | |
run: ant | |
- name: ant_test | |
run: ant test | true | |
env: | |
ANT_OPTS: -Xmx2G -XX:MaxPermSize=512m | |
- name: obtained_error_result | |
run: grep 'Caused an ERROR' output/build/logs/* > error_result.txt | true | |
- name: obtained_failed_result | |
run: grep 'FAILED' output/build/logs/* > failed_result.txt | true | |
- name: print_error | |
run: cat error_result.txt | |
- name: print_failed | |
run: cat failed_result.txt | |
- name: expected_error_and_failed_result | |
run: touch known_errors.txt && touch known_failed.txt | |
#Known ERRORS | |
- name: remove_known_error_1 | |
run: sed -i.bak '/TEST-org.apache.catalina.valves.rewrite.TestResolverSSL/d' error_result.txt | true | |
- name: remove_known_error_2 | |
run: sed -i.bak '/TEST-org.apache.coyote.http2.TestLargeUpload/d' error_result.txt | true | |
- name: remove_known_error_3 | |
run: sed -i.bak '/TEST-org.apache.tomcat.util.net.TestClientCert/d' error_result.txt | true | |
- name: remove_known_error_4 | |
run: sed -i.bak '/TEST-org.apache.tomcat.util.net.TestClientCertTls13/d' error_result.txt | true | |
- name: remove_known_error_5 | |
run: sed -i.bak '/TEST-org.apache.tomcat.util.net.TestCustomSsl/d' error_result.txt | true | |
- name: remove_known_error_6 | |
run: sed -i.bak '/TEST-org.apache.tomcat.websocket.TestWebSocketFrameClientSSL/d' error_result.txt | true | |
- name: remove_known_error_7 | |
run: sed -i.bak '/TEST-org.apache.tomcat.websocket.TestWsWebSocketContainer/d' error_result.txt | true | |
- name: remove_known_error_8 | |
run: sed -i.bak '/TEST-org.apache.tomcat.util.net.TestCustomSslTrustManager/d' error_result.txt | true | |
- name: remove_known_error_9 | |
run: sed -i.bak '/TEST-org.apache.tomcat.util.net.TestSsl/d' error_result.txt | true | |
#Known FAILED | |
- name: remove_known_failed_1 | |
run: sed -i.bak '/TEST-org.apache.tomcat.util.net.TestSsl/d' failed_result.txt | true | |
- name: remove_known_failed_2 | |
run: sed -i.bak '/TEST-org.apache.tomcat.util.net.openssl.ciphers.TestCipher/d' failed_result.txt | true | |
- name: remove_known_failed_3 | |
run: sed -i.bak '/TEST-org.apache.tomcat.util.net.openssl.ciphers.TestOpenSSLCipherConfigurationParser/d' failed_result.txt | true | |
- name: final_status | |
run: diff failed_result.txt known_failed.txt && diff error_result.txt known_errors.txt |