-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f29c8bc
commit ab479a4
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: C/C++ CI | ||
on: | ||
push: | ||
|
||
jobs: | ||
example_matrix: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-22.04, macos-latest] | ||
python-version: ["3.7"] | ||
compiler: [gcc] | ||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
shell: bash # Use bash for all run steps by default | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install compiler | ||
id: install_cc | ||
uses: rlalik/setup-cpp-compiler@master | ||
with: | ||
compiler: ${{ matrix.compiler }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install pandas | ||
pip install "pybind11[global]" | ||
pip install cvxopt | ||
pip install "OpenDSSDirect.py[extras]" | ||
pip install helics | ||
pip install numpy | ||
- name: Configure build | ||
run: | | ||
mkdir -p build | ||
cd build | ||
rm -rf * | ||
pwd | ||
cmake -DICM=ON -DCMAKE_INSTALL_PREFIX=$HOME/my-project-installation .. | ||
make | ||
make install | ||