feat: adjust ci

This commit is contained in:
rvcas 2023-02-23 20:03:09 -05:00
parent 06be109930
commit 9792b193a3
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
1 changed files with 6 additions and 8 deletions

View File

@ -86,15 +86,13 @@ jobs:
with: with:
cache-on-failure: true cache-on-failure: true
- name: Get Dependencies [Ubuntu] - name: Install OpenSSL
if: ${{ matrix.os == 'ubuntu-latest' }}
run: | run: |
sudo apt-get install pkg-config libssl-dev if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get install pkg-config libssl-dev
- name: Get Dependencies [MacOS] elif [ "$RUNNER_OS" == "macOS" ]; then
if: ${{ matrix.os == 'macOS-latest' }} brew install openssl@1.1
run: | fi
brew install openssl@1.1
- name: Apple M1 setup - name: Apple M1 setup
if: ${{ matrix.job.target == 'aarch64-apple-darwin' }} if: ${{ matrix.job.target == 'aarch64-apple-darwin' }}