build libs / win & linux
This commit is contained in:
22
.github/workflows/win64.yml
vendored
Normal file
22
.github/workflows/win64.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: epanet2-win64
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: setup_build_dir
|
||||
run: mkdir buildproducts
|
||||
- name: cmake
|
||||
working-directory: ./buildproducts
|
||||
run: cmake .. -A x64 && cmake --build . --config Release
|
||||
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: epanet2-win64
|
||||
path: D:\a\EPANET\EPANET\buildproducts\bin\Release\
|
||||
Reference in New Issue
Block a user