Skip to content

Commit

Permalink
action fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jthierry-psee committed Sep 10, 2024
1 parent fb5cfc5 commit b5282e7
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/all_jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
#General variables
python_versions: 3.9
#Windows variables
python_executable: "C:/hostedtoolcache/windows/Python/3.9.9/x64/python.exe" #Cmake needs this to find python on windows
python_executable: "C:/hostedtoolcache/windows/Python/3.9.13/x64/python.exe" #Cmake needs this to find python on windows

jobs:

Expand Down Expand Up @@ -51,9 +51,10 @@ jobs:

- name: Build openEB
run: |
test -e /opt/prophesee/psee-py3venv/bin/activate && . /opt/prophesee/psee-py3venv/bin/activate
mkdir build && cd build
cmake .. -DBUILD_TESTING=ON
cmake --build . --config Release --parallel 4
cmake --build . --config Release --parallel `nproc`
- name: Getting datasets from storage
uses: dawidd6/action-download-artifact@v2
Expand Down Expand Up @@ -108,8 +109,10 @@ jobs:

- name: Build openEB
run: |
cmake -B build -DBUILD_TESTING=ON
cmake --build build --config Release --parallel `nproc`
test -e /opt/prophesee/psee-py3venv/bin/activate && . /opt/prophesee/psee-py3venv/bin/activate
mkdir build && cd build
cmake .. -DBUILD_TESTING=ON
cmake --build . --config Release --parallel `nproc`
- name: Getting datasets from storage
uses: dawidd6/action-download-artifact@v2
Expand Down

0 comments on commit b5282e7

Please sign in to comment.