[not for merge] debugging some DESC branch vs CI weirdness #2234
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: Parsl | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
main-test-suite: | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Non-requirements based install | |
run: | | |
sudo apt-get update -q | |
python --version | |
# this is to make the workqueue binary installer happy | |
sudo apt-get install -y libpython3.5 | |
- name: make deps clean_coverage | |
run: | | |
make deps | |
make clean_coverage | |
- name: make workqueue_mon_test | |
run: | | |
make workqueue_mon_test | |
- name: postrun info | |
if: ${{ always() }} | |
run: | | |
echo runinfo top level | |
ls -lt runinfo || true | |
echo find of runinfo/004 | |
find runinfo/004 || true | |
- name: Archive runinfo logs | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: runinfo-${{ matrix.python-version }} | |
path: runinfo/ |