Skip to content

Commit

Permalink
Adding pyuda install to CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
jholloc committed Nov 28, 2023
1 parent b107de8 commit e8d65ba
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,20 +158,21 @@ jobs:
if: matrix.os == 'windows-latest'
run: cmake --install build --config ${{ matrix.release }}

# - name: Install pyuda
# if: matrix.os == 'ubuntu-latest'
# run: >
# cp -r /usr/local/python_installer ${{github.workspace}}/python_installer &&
# python3 -m venv ${{github.workspace}}/venv &&
# source ${{github.workspace}}/venv/bin/activate &&
# pip3 install Cython numpy six &&
# pip3 install ${{github.workspace}}/python_installer

# - name: Test pyuda import
# if: matrix.os == 'ubuntu-latest'
# run: >
# source ${{github.workspace}}/venv/bin/activate &&
# python3 -c 'import pyuda; client=pyuda.Client()'
- name: Install pyuda
if: matrix.os == 'ubuntu-latest'
run: >
cp -r /usr/local/python_installer ${{github.workspace}}/python_installer &&
python3 -m venv ${{github.workspace}}/venv &&
source ${{github.workspace}}/venv/bin/activate &&
pip3 install --upgrade pip &&
pip3 install wheel Cython numpy six &&
pip3 install ${{github.workspace}}/python_installer
- name: Test pyuda import
if: matrix.os == 'ubuntu-latest'
run: >
source ${{github.workspace}}/venv/bin/activate &&
python3 -c 'import pyuda; client=pyuda.Client()'
# - name: Test
# working-directory: build
Expand Down

0 comments on commit e8d65ba

Please sign in to comment.