Skip to content

Commit

Permalink
chore: update action steps
Browse files Browse the repository at this point in the history
  • Loading branch information
iosh committed Oct 16, 2024
1 parent 69fb4e6 commit f36efa8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,19 @@ jobs:
shell: bash

- name: Install Linux dependencies
if: ${{matrix.settings.host == 'ubuntu-latest'}}
if: ${{contains(matrix.settings.host, 'ubuntu')}}
run: |
sudo apt-get update
sudo apt-get install curl lsb-release wget software-properties-common gnupg -y
wget https://apt.llvm.org/llvm.sh && chmod u+x llvm.sh && ./llvm.sh 18
sudo apt-get install -y libsqlite3-dev pkg-config libssl-dev cmake libc++-18-dev
- name: Install macos dependencies
if: ${{matrix.settings.host == 'macos-latest'}}
if: ${{contains(matrix.settings.host, 'macos')}}
run: |
brew update
brew install llvm openssl pkg-config cmake bzip2
- name: Install windows dependencies
if: ${{matrix.settings.host == 'windows-latest'}}
if: ${{contains(matrix.settings.host, 'windows')}}
run: |
choco install llvm visualstudio-installer visualstudio2017-workload-vctools visualstudio2017buildtools-y
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
Expand Down

0 comments on commit f36efa8

Please sign in to comment.