Add error handling to resolver in case of broken symlinks #340
Workflow file for this run
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: demo_configs | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
demo_runs: | |
# Check to make sure Pavilion can auto-fetch it's dependencies. | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: install-deps | |
run: sudo apt install gcc | |
- name: | |
run: | | |
source examples/demo/activate.sh | |
pav run -v QUIET demo advanced buildit | |
pav wait | |
pav results --all-passed |