Add network tool #665
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: develop | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup system | |
run: sudo ./setup.sh --local | |
- name: Build gridlabd | |
run: sudo ./build.sh --system --parallel | |
- name: Install openfido | |
run: curl -sL https://raw.githubusercontent.com/openfido/cli/main/install.sh | sudo sh | |
- name: Validate system | |
run: sudo gridlabd -D keep_progress=TRUE -T 0 --validate -D github_actions=yes || ( sudo utilities/save_validation_errors ; false ) | |
- name: Upload artifacts on failure | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: validate-result | |
path: | | |
validate.txt | |
validate.tar.gz |