forked from zeroc-ice/ice
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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') |