Create install files #34
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: validate | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: lfenergy/arras:develop | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update build tools | |
run: sudo apt-get install libtool-bin -y | |
- name: Build module | |
run: | | |
cd source | |
echo "make install" | gridlabd shell | |
cd - | |
- name: Validate module | |
run: gridlabd --validate | |
- name: Upload artifacts on failure | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: validate-result | |
path: | | |
validate.txt | |
validate.tar.gz |