Skip to content

Commit

Permalink
Add hyperscan deps to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
variar committed Apr 17, 2021
1 parent d482570 commit e9d3c1d
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
if: ${{ matrix.config.os == 'ubuntu' }}
run: |
sudo apt-get update
sudo apt-get install g++-8 -y
sudo apt-get install g++-8 libboost-all-dev ragel -y
- name: Cache openssl
id: cache-openssl
Expand All @@ -105,6 +105,40 @@ jobs:
run: |
echo "SSL_DIR=${{ github.workspace }}\openssl-1.1\${{ matrix.config.arch }}\bin" >> $GITHUB_ENV
echo "SSL_ARCH=${{ matrix.config.ssl_arch }}" >> $GITHUB_ENV
- name: install conan
if: ${{ matrix.config.os == 'windows'}}
run: |
python -m pip install --upgrade pip
pip install --upgrade conan
shell: bash

- name: setup conan profile
if: ${{ matrix.config.os == 'windows'}}
run: |
conan profile new default --detect
conan profile show default
shell: bash

- name: install boost
if: ${{ matrix.config.os == 'windows'}}
run: |
${boostroot} = "${env:GITHUB_WORKSPACE}\boost_install"
conan install boost/1.72.0@ -o boost:header_only=True -g deploy --install-folder ${boostroot}
echo "BOOST_ROOT=${boostroot}\boost" >> ${env:GITHUB_ENV}
- name: Set brew env
if: ${{ matrix.config.os == 'macos'}}
run: |
echo "HOMEBREW_NO_ANALYTICS=1" >> $GITHUB_ENV
echo "HOMEBREW_NO_AUTO_UPDATE=1" >> $GITHUB_ENV
echo "HOMEBREW_NO_INSTALL_CLEANUP=1" >> $GITHUB_ENV
- name: Brew deps
if: ${{ matrix.config.os == 'macos'}}
run: |
brew install ragel
brew install boost
- name: Cache Qt
id: cache-qt
Expand Down

0 comments on commit e9d3c1d

Please sign in to comment.