Skip to content

Commit

Permalink
Don't install openssl in any CI job
Browse files Browse the repository at this point in the history
Since the newer GitHub actions Windows runners already include openssl
there's no need to install it as a package for any jobs.

This should really have been part of b4d445.
  • Loading branch information
laudrup committed Jan 23, 2024
1 parent 90ee85d commit 6f8aeca
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
toolset: msvc
platform_version: 2022

- name: Install packages
run: choco install openssl

- name: Configure
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
platform_version: 2022

- name: Install packages
run: choco install openssl opencppcoverage
run: choco install opencppcoverage

- name: Configure
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}

- name: Install packages
run: choco install openssl curl
run: choco install curl

- name: Install Boost
uses: MarkusJx/[email protected]
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ jobs:
maximum-size: 16GB
disk-root: "C:"

# - name: Install packages
# run: choco install openssl

- name: Create build directory
run: mkdir build

Expand Down

0 comments on commit 6f8aeca

Please sign in to comment.