Skip to content

Commit

Permalink
Merge pull request #250 from Morpho-lang/morehessians
Browse files Browse the repository at this point in the history
Thanks @joshichaitanya3 for your work on this; it seems we've also resolved some deeper rooted issues as well.
  • Loading branch information
softmattertheory authored May 22, 2024
2 parents 12597e4 + 57421be commit 2cdf7ab
Show file tree
Hide file tree
Showing 13 changed files with 404 additions and 265 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/buildandtestmultithreaded.yml
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dkms.conf
.entitlements
.vscode/settings.json

test/FailedTests.txt
test/FailedTests*.txt
*.png
*.out
manual/src/manual.lyx~
Expand Down
Loading

0 comments on commit 2cdf7ab

Please sign in to comment.