Files
EPANET/.github/workflows/ccpp.yml
2022-07-28 23:37:10 +03:00

24 lines
471 B
YAML

name: linux
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: setup_build_dir
run: mkdir buildproducts
- name: cmake
working-directory: ./buildproducts
run: cmake ..
- name: make
working-directory: ./buildproducts
run: make
- uses: actions/upload-artifact@v2
with:
name: libepanet-output
path: /home/runner/work/EPANET/EPANET/buildproducts/