diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index ae9dfcfa1..d76a5e6c7 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -9,7 +9,6 @@ on: jobs: tcl-versions: name: Tcl Versions - needs: default-build strategy: matrix: tcl_version: [ '8.5.19', '8.6.14', '8.7a5', '9.0b2' ] @@ -30,7 +29,6 @@ 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: @@ -47,7 +45,6 @@ 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: @@ -68,7 +65,6 @@ 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' ]