Skip to content

Commit

Permalink
Create new.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
asra-naseem authored Oct 5, 2023
1 parent 2c6ed55 commit 310dfd5
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
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
export CC=${{ steps.install_cc.outputs.cc }}
export CXX=${{ steps.install_cc.outputs.cxx }}
echo ${CC}
echo ${CXX}
if [[ "${{ matrix.os }}" == "ubuntu-22.04" ]]; then
sudo apt install libomp-dev
fi
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=11 ../
make -j 4
make install
- name: Start Execute Script
run: python start_execution.py

0 comments on commit 310dfd5

Please sign in to comment.