-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from jngaravitoc/main
Restructure
- Loading branch information
Showing
19 changed files
with
875 additions
and
187 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,94 @@ | ||
name: "Test Ubuntu Build" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
pyexp: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
cc: [gcc, mpicc] | ||
|
||
name: "Test pyEXP Build" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install core dependencies - ubuntu | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential libeigen3-dev libfftw3-dev libhdf5-dev libopenmpi-dev | ||
- name: Setup submodule and build | ||
run: | | ||
git submodule update --init --recursive | ||
mkdir -p build/install | ||
- name: Compile pyEXP - Linux | ||
if: runner.os == 'Linux' | ||
env: | ||
CC: ${{ matrix.cc }} | ||
working-directory: ./build | ||
run: >- | ||
cmake | ||
-DENABLE_NBODY=NO | ||
-DENABLE_PYEXP=YES | ||
-DCMAKE_BUILD_TYPE=Release | ||
-DEigen3_DIR=/usr/include/eigen3/share/eigen3/cmake | ||
-DCMAKE_INSTALL_PREFIX=./install | ||
-Wno-dev | ||
.. | ||
- name: Make | ||
working-directory: ./build | ||
run: make -j 2 | ||
|
||
# ----------------------------------------------------------------------------------- | ||
|
||
exp: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
cc: [gcc, mpicc] | ||
|
||
name: "Test Full EXP Build" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install core dependencies - ubuntu | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential libeigen3-dev libfftw3-dev libhdf5-dev libopenmpi-dev | ||
- name: Setup submodule and build | ||
run: | | ||
git submodule update --init --recursive | ||
mkdir -p build/install | ||
- name: Compile Full EXP - Linux | ||
if: runner.os == 'Linux' | ||
env: | ||
CC: ${{ matrix.cc }} | ||
working-directory: ./build | ||
run: >- | ||
cmake | ||
-DENABLE_NBODY=YES | ||
-DENABLE_PYEXP=NO | ||
-DCMAKE_BUILD_TYPE=Release | ||
-DEigen3_DIR=/usr/include/eigen3/share/eigen3/cmake | ||
-DCMAKE_INSTALL_PREFIX=./install | ||
-Wno-dev | ||
.. | ||
- name: Make | ||
working-directory: ./build | ||
run: make -j 2 |
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,41 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Python package | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install flake8 pytest | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: Lint with flake8 | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | ||
# Tests not working at the moment -- pyEXP requirement! | ||
#- name: Test with pytest | ||
# run: | | ||
# pytest |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
from . import visuals | ||
from . import basis_builder |
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,5 @@ | ||
from . import makemodel | ||
from . import profiles | ||
from .makemodel import makemodel | ||
from .profiles import Profiles | ||
from .basis_utils import makebasis |
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
Oops, something went wrong.