Skip to content

Commit

Permalink
use source instead of .
Browse files Browse the repository at this point in the history
  • Loading branch information
egecetin committed Dec 15, 2024
1 parent 5c4efe0 commit 80d7c3e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/os-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,26 @@ jobs:
submodules: recursive
- name: Install Python Requirements
run: |
python3 -m venv .venv && . .venv/bin/activate
python3 -m venv .venv && source .venv/bin/activate
python3 -m pip install cython wheel pytest build
- name: Configure
run: cmake -DCMAKE_BUILD_TYPE=Release -DKALEIDOSCOPE_ENABLE_TESTS=ON -DKALEIDOSCOPE_ENABLE_PACKAGE=ON -S . -B build
- name: Build
run: |
. .venv/bin/activate
source .venv/bin/activate
cmake --build build --parallel --config Release
- name: Install python package
run: |
. .venv/bin/activate
source .venv/bin/activate
python3 -m pip install --find-links=./build/python/dist/ LibKaleidoscope
- name: Run Tests
run: |
. .venv/bin/activate
source .venv/bin/activate
ctest --output-on-failure --test-dir build/tests --build-config Release
pytest python/python-tests.py
- name: Package
run: |
. .venv/bin/activate
source .venv/bin/activate
cmake --build build --parallel --target package --config Release
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 80d7c3e

Please sign in to comment.