rerun of new radiance #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UnitTests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install . | |
- name: Download Radiance binaries | |
run: | | |
ver=$(gh release list -R LBNL-ETA/Radiance -L 1 | cut -f 3) | |
gh release download $ver -R LBNL-ETA/Radiance -p '*Linux.zip' | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Radiance | |
run: | | |
unzip Radiance_*_Linux.zip | |
tar -xvf radiance-*-Linux.tar.gz | |
mkdir buildRad | |
sudo cp -avr ./radiance-*-Linux/usr/local/radiance ./buildRad | |
export RAYPATH=.:${{ github.workspace }}/buildRad/radiance/lib | |
export PATH=$PATH:${{ github.workspace }}/buildRad/radiance/bin | |
rtrace -version | |
- name: Test with pytest | |
run: | | |
export RAYPATH=.:${{ github.workspace }}/buildRad/radiance/lib | |
export PATH=$PATH:${{ github.workspace }}/buildRad/radiance/bin | |
pytest -rx |