diff options
author | metagn <metagngn@gmail.com> | 2022-10-27 18:24:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 17:24:26 +0200 |
commit | e68a6ea759c65ec2ec92cfe5ef922c5c3ef0623e (patch) | |
tree | ce1fcd2d661f6f1e343caba296655e78b8ee03eb /.github | |
parent | 27896ed4690ec084df6b32d314b2cc4125c322ab (diff) | |
download | Nim-e68a6ea759c65ec2ec92cfe5ef922c5c3ef0623e.tar.gz |
openssl 3 support no longer opt in + some 1.0 support (#20668)
* Revert "Add OpenSSL 3 support (#19814)" This reverts commit 2dcfd732609a2cfa805e5a94cc105399a2f18632. * openssl 3 support no longer opt in + some 1.0 support * hopefully fix * maybe fix * final attempt * actual fix hopefully
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci_packages.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/ci_packages.yml b/.github/workflows/ci_packages.yml index 86843d420..c889798b5 100644 --- a/.github/workflows/ci_packages.yml +++ b/.github/workflows/ci_packages.yml @@ -46,8 +46,7 @@ jobs: valgrind libc6-dbg libblas-dev xorg-dev - name: 'Install dependencies (macOS)' if: runner.os == 'macOS' - run: | - brew install boehmgc make sfml gtk+3 + run: brew install boehmgc make sfml gtk+3 - name: 'Install dependencies (Windows)' if: runner.os == 'Windows' shell: bash @@ -71,5 +70,4 @@ jobs: - name: 'koch, Run CI' shell: bash - run: | - . ci/funs.sh && nimInternalBuildKochAndRunCI + run: . ci/funs.sh && nimInternalBuildKochAndRunCI |