Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
leocardao committed Jul 17, 2024
1 parent 8e2282b commit 10f4622
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,16 @@ jobs:
$CWD=$(Get-Location)
mkdir -p ./build_deps/wheels
pip3 install wheel
cd e3-core && python3 ./setup.py -q bdist_wheel --python-tag py38 -d $CWD/build_deps/wheels &&
cd .. &&
cd e3-testsuite && python3 ./setup.py -q bdist_wheel --python-tag py38 -d $CWD/build_deps/wheels
(cd e3-core && python3 -m pip install .)
(cd e3-testsuite && python3 -m pip install .)
- name: Install e3-testsuite (Unix)
if: ${{ runner.os != 'Windows' && steps.cache-deps.outputs.cache-hit != 'true' }}
run: |
CWD=$(pwd)
mkdir -p ./build_deps/wheels
pip3 install wheel
(cd e3-core && python3 ./setup.py -q bdist_wheel --python-tag py38 -d $CWD/build_deps/wheels)
(cd e3-testsuite && python3 ./setup.py -q bdist_wheel --python-tag py38 -d $CWD/build_deps/wheels)
(cd e3-core && python3 -m pip install .)
(cd e3-testsuite && python3 -m pip install .)
- name: Create python environment (Unix)
if: ${{ runner.os != 'Windows' }}
run: |
Expand Down

0 comments on commit 10f4622

Please sign in to comment.