@@ -12,17 +12,17 @@ jobs:
1212 strategy :
1313 matrix :
1414 include :
15- - { version: '7.1', image: 'latest-7.1', params: ';SSLCertificate=SSL_VERIFY_NONE' }
16- - { version: '7.0', image: 'latest-7.0', params: ';SSLCertificate=SSL_VERIFY_NONE' }
17- # - { version: '6.2', image: 'latest-6.2', params: '' }
18- # - { version: '6.1', image: 'latest-6.1', params: '' }
19- # - { version: '6.0', image: '6.0.16-d1', params: '' }
15+ - { version: '7.1', image: 'latest-7.1', port: 8563 }
16+ - { version: '7.0', image: 'latest-7.0', port: 8563 }
17+ # - { version: '6.2', image: 'latest-6.2', port: 8888 }
18+ # - { version: '6.1', image: 'latest-6.1', port: 8888 }
19+ # - { version: '6.0', image: '6.0.16-d1', port: 8888 }
2020 name : ☀️ Exasol ${{ matrix.version }}
2121 runs-on : ubuntu-latest
2222 services :
2323 exasol :
2424 image : exasol/docker-db:${{ matrix.image }}
25- ports : [ 8563 ]
25+ ports : [ "${{ matrix.port }}" ]
2626 options : --privileged
2727 steps :
2828 - uses : actions/checkout@v2
@@ -37,15 +37,11 @@ jobs:
3737 with :
3838 path : local
3939 key : perl-${{ steps.perl.outputs.perl-hash }}
40- - name : Download cpanfile
41- uses :
carlosperate/[email protected] 42- with :
43- file-url : https://fastapi.metacpan.org/source/DWHEELER/App-Sqitch-v1.1.0/dist/cpanfile
44- - run : cpm install --verbose --show-build-log-on-failure --no-test --with-recommends --cpanfile cpanfile
40+ - run : cpm install --verbose --show-build-log-on-failure --no-test --with-recommends --cpanfile dist/cpanfile
4541 - run : cpm install --verbose --show-build-log-on-failure --no-test --with-recommends DBD::ODBC
4642 - name : prove
4743 env :
4844 PERL5LIB : " ${{ github.workspace }}/local/lib/perl5"
4945 LIVE_EXASOL_REQUIRED : true
50- SQITCH_TEST_EXASOL_URI :
db:exasol://sys:[email protected] :${{ job.services.exasol.ports[8563 ] }}/?Driver=Exasol${{ matrix.params }} 46+ SQITCH_TEST_EXASOL_URI :
db:exasol://sys:[email protected] :${{ job.services.exasol.ports[matrix.port ] }}/?Driver=Exasol;SSLCertificate=SSL_VERIFY_NONE 5147 run : prove -lvr t/exasol.t
0 commit comments