Skip to content

Commit

Permalink
Merge branch 'master' into refactorUQ
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed Jul 3, 2022
2 parents 05c6438 + 886ddc4 commit 8ed6172
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,16 +104,29 @@ for:
- cmd: echo %PATH%

install:
- cmd: git clone https://github.com/NHERI-SimCenter/SimCenterBackendApplications.git
- git clone https://github.com/NHERI-SimCenter/SimCenterCommon.git
- git clone https://github.com/NHERI-SimCenter/quoFEM.git
- cmd: dir

build_script:

# build simcenter backend
- cmd: dir
- cmd: cd SimCenterBackendApplications
- cmd: mkdir build
- cmd: cd build
- cmd: conan install .. --build missing
- cmd: cmake .. -G "Visual Studio 16 2019"
- cmd: cmake --build . --config Release
- cmd: cmake --install .
- cmd: cd ..
- cmd: cd ..

#
# build quoFEM
#

# first UI
- cmd: cd quoFEM
- cmd: mkdir build
- cmd: cd build
Expand All @@ -122,19 +135,6 @@ for:
- cmd: nmake
- cmd: cd ..

# now quoFEM backend
- cmd: cd backend
- cmd: mkdir build
- cmd: dir
- cmd: cd build
- cmd: conan install .. --build missing
- cmd: cmake .. -G "Visual Studio 16 2019"
- cmd: cmake --build . --config Release
- cmd: cmake --install .
- cmd: cd ..
- cmd: cd ..

- cmd: cd ..

test_script:
-cmd: python --version

0 comments on commit 8ed6172

Please sign in to comment.