Skip to content

Commit

Permalink
Test job dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thommey committed Jun 16, 2024
1 parent bce445d commit 5846583
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
tcl-versions:
name: Tcl Versions
needs: default-build
strategy:
matrix:
tcl_version: [ '8.5.19', '8.6.14', '8.7a5', '9.0b2' ]
Expand All @@ -29,6 +30,7 @@ jobs:
run: ./configure --with-tcl=$HOME/tcl/lib && LD_LIBRARY_PATH=$HOME/tcl/lib make config eggdrop
ssl-version-10:
name: OpenSSL 1.0
needs: default-build
continue-on-error: true
runs-on: ubuntu-latest
steps:
Expand All @@ -45,6 +47,7 @@ jobs:
run: cd $GITHUB_WORKSPACE/eggdrop && ./configure --with-sslinc=$HOME/ssl/include --with-ssllib=$HOME/ssl/lib && LD_LIBRARY_PATH=$HOME/ssl/lib make config eggdrop
ssl-version-11:
name: OpenSSL 1.1
needs: default-build
continue-on-error: true
runs-on: ubuntu-latest
steps:
Expand All @@ -65,6 +68,7 @@ jobs:
run: cd $GITHUB_WORKSPACE/eggdrop && ./configure --with-sslinc=$HOME/ssl/include --with-ssllib=$HOME/ssl/lib && LD_LIBRARY_PATH=$HOME/ssl/lib make config eggdrop
ssl-versions-3x:
name: OpenSSL 3.x
needs: default-build
strategy:
matrix:
ssl_version: [ '3.0', '3.1', '3.2', '3.3' ]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
feature-test:
name: Features
continue-on-error: true
needs: default-build
strategy:
matrix:
conf_tls: [ '', '--disable-tls' ]
Expand Down

0 comments on commit 5846583

Please sign in to comment.