Skip to content

Commit

Permalink
Set environment variables in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
t-sommer committed May 27, 2024
1 parent 51ad005 commit 4c0afc1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
cmake . -G "Visual Studio 17 2022" -Bpython_build -DEXTERNAL_LANGUAGE=Python -DPYTHON_HOME="$python_home"
- run: cmake --build python_build --config Release
- run: python -m pip install -e Python
- run: python_build\Release\ExternalLibraryTest.exe
- run: |
set
set PYTHONHOME="${{ env.Python_ROOT_DIR }}""
set PATH="${{ env.Python_ROOT_DIR }};%PATH%"
set
python_build\Release\ExternalLibraryTest.exe
x86_64-linux:
runs-on: ubuntu-22.04
steps:
Expand Down

0 comments on commit 4c0afc1

Please sign in to comment.