Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/actions/build-py/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,8 @@ runs:
cp dist/*.whl wheelhouse
fi
cp -r wheelhouse ..
- name: Upload Python Wheels Simulation # See Issue #939
uses: actions/upload-artifact@v3
if: inputs.package == 'simulation'
with:
name: python-wheels-${{ inputs.package }}
path: pycode/wheelhouse
- name: Upload Python Wheels
uses: actions/upload-artifact@v4
if: inputs.package != 'simulation'
with:
name: python-wheels-${{ inputs.package }}
path: pycode/wheelhouse
Expand Down
13 changes: 3 additions & 10 deletions .github/actions/test-py/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,19 @@ runs:
sudo apt-get -qq -y install python3-pip gnupg
fi
python -m pip install --upgrade pip
- name: Download Python Wheels Simulation
uses: actions/download-artifact@v3
if: inputs.package == 'simulation' #WORKAROUND! See Issue #939
with:
name: python-wheels-${{ inputs.package }}
path: pycode/wheelhouse
- name: Download Python Wheels
uses: actions/download-artifact@v4
if: inputs.package != 'simulation'
with:
name: python-wheels-${{ inputs.package }}
path: pycode/wheelhouse
- name: Download additional Python Wheels for plot package
- name: Download Python Wheels from epidata for plot package
uses: actions/download-artifact@v4
if: inputs.package == 'plot'
with:
name: python-wheels-epidata
path: pycode/wheelhouse
- name: Download Python Wheels for surrogatemodel
uses: actions/download-artifact@v3 #WORKAROUND! Upgrade to v4 asap. See Issue #939
- name: Download Python Wheels from simulation for surrogatemodel
uses: actions/download-artifact@v4
if: inputs.package == 'surrogatemodel'
with:
name: python-wheels-simulation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ jobs:
name: test-cpp-coverage-reports
- name: Download pylint report
#if an error occurs here, the pylint report was not built, probably manually trigger epidata-ci
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v6
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: epidata_main.yml
Expand Down