Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Dec 21, 2023
1 parent 1b36d11 commit 2f4d026
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions .github/actions/setup-build-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,29 @@ runs:
steps:
- name: Install brew dependencies
run: brew install python3 ruby openjdk node php lmdb mcpp
- name: Install test dependencies
run: python3 -m pip install passlib cryptography
if: startsWith(matrix.os, 'macos')

if: startsWith(matrix.os, 'ubuntu')
steps:
- name: Install dependencies
- name: Install apt dependencies
run: sudo apt-get install -y python3 python3-pip nodejs libbz2-dev libssl-dev libffi-dev libmcpp-dev libedit-dev liblmdb-dev libexpat1-dev libsystemd-dev openjdk-17-jdk ruby ruby-dev php-cli php-dev
- name: Install test dependencies
run: python3 -m pip install passlib cryptography
if: startsWith(matrix.os, 'ubuntu')

if: startsWith(matrix.os, 'windows')
steps:
# - name: Install dependencies
# - name: Install dependencies
# run: choco --yes install
- name: Setup MSBuild
uses: microsoft/[email protected]
with:
msbuild-architecture: x64
if: startsWith(matrix.os, 'windows')
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
if: startsWith(matrix.os, 'windows')
- name: Configure Environment
run: |
echo "PythonHome=$env:Python_ROOT_DIR" >> $env:GITHUB_ENV
- name: Install test dependencies
run: python -m pip install passlib cryptography python-dev-tools
if: startsWith(matrix.os, 'windows')

- name: Install testing dependencies from pip
run: python3 -m pip install passlib cryptography
if: startsWith(matrix.os, 'macos') || startsWith(matrix.os, 'ubuntu')

0 comments on commit 2f4d026

Please sign in to comment.