Skip to content

Commit

Permalink
Merge branch 'claudioperez-contrib-src'
Browse files Browse the repository at this point in the history
  • Loading branch information
fmckenna committed Sep 24, 2021
2 parents 729ab4d + 3a11890 commit 9f5f059
Show file tree
Hide file tree
Showing 214 changed files with 6,780 additions and 1,722 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

name: CMake Build

env:
CMAKE_VERSION: 3.20.1
BUILD_TYPE: Debug

on:
push:
branches: [cmake-build]

jobs:
build-ubuntu:
name: Ubuntu bundled build
runs-on: ubuntu-latest
steps:
#- uses: claudioperez/OpenSees@cmake-build
- uses: actions/checkout@v2
with: {ref: cmake-build}

- name: Install Tcl
run:
sudo apt-get install tcl-dev

- name: Build
run: |
mkdir build
cd build
cmake ..
cmake --build . --target OpenSeesTcl -j5
build-win32:
name: Build on Windows
- name: Build
run: |
mkdir build
cd build
cmake ..
cmake --build . --target OpenSeesTcl -j5
Loading

0 comments on commit 9f5f059

Please sign in to comment.