-
Notifications
You must be signed in to change notification settings - Fork 11
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 #250 from Morpho-lang/morehessians
Thanks @joshichaitanya3 for your work on this; it seems we've also resolved some deeper rooted issues as well.
- Loading branch information
Showing
13 changed files
with
404 additions
and
265 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,42 @@ | ||
name: TestMultiThreaded | ||
|
||
on: | ||
push: | ||
branches: [ "main", "dev" ] | ||
pull_request: | ||
branches: [ "main", "dev" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: configure | ||
run: | | ||
sudo apt update | ||
sudo apt install libsuitesparse-dev | ||
sudo apt install liblapacke-dev | ||
sudo apt install libunistring-dev | ||
python -m pip install --upgrade pip | ||
python -m pip install regex colored | ||
- name: make | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_BUILD_TYPE=Release .. | ||
sudo make install | ||
sudo mkdir /usr/local/lib/morpho | ||
- name: getcli | ||
run: | | ||
git clone https://github.com/Morpho-lang/morpho-cli.git | ||
cd morpho-cli | ||
mkdir build | ||
cd build | ||
cmake .. | ||
sudo make install | ||
- name: test | ||
run: | | ||
cd test | ||
python3 test.py -c -m |
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.