Skip to content

Commit

Permalink
Fix imagemagick version conflict with CI + install libssl-dev in CI. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
john-michaelburke committed Sep 21, 2022
1 parent 87b29d6 commit d159b26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
shell: bash
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update && sudo apt-get install -y capnproto libudev-dev
sudo apt-get update && sudo apt-get install -y capnproto libudev-dev libssl-dev
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install capnp llvm
elif [ "$RUNNER_OS" == "Windows" ]; then
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:

- name: Install Dependencies.
run: |
sudo apt-get update && sudo apt-get install -y capnproto libudev-dev
sudo apt-get update && sudo apt-get install -y capnproto libudev-dev libssl-dev
- name: Cache pip
uses: actions/cache@v2
Expand Down Expand Up @@ -253,7 +253,8 @@ jobs:
ruby-dev \
rubygems \
build-essential \
libudev-dev
libudev-dev \
libssl-dev
sudo gem install --no-document fpm
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install capnp llvm create-dmg
Expand Down
2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ exec --fail-on-error ${DIST_PYTHON} ./get-pip.py
script_runner = "@duckscript"
script = '''
wget -O imagemagick.tool.7.1.0.nupkg https://github.com/swift-nav/swift-toolchains/releases/download/imagemagick-7.1.0/imagemagick.tool.7.1.0.nupkg
exec --fail-on-error choco install -q -y vcredist2010 --version=10.0.40219.1
exec --fail-on-error choco install -q -y --side-by-side vcredist2010 --version=10.0.40219.32503
exec --fail-on-error choco install -q -y ./imagemagick.tool.7.1.0.nupkg
rm imagemagick.tool.7.1.0.nupkg
'''
Expand Down

0 comments on commit d159b26

Please sign in to comment.