-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* make prettieer * new badges * rename build to more specific
- Loading branch information
1 parent
dd486b7
commit 37c9e82
Showing
9 changed files
with
88 additions
and
123 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,74 @@ | ||
name: "Binding Tests" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build_go: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: go install | ||
run: sudo apt install golang-go | ||
- name: make go | ||
run: make go | ||
|
||
build_javascript: | ||
runs-on: ubuntu-22.0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install LLVM and Clang | ||
uses: KyleMayes/install-llvm-action@v1 | ||
with: | ||
version: "10.0" | ||
- name: python deps | ||
run: python3 -m pip install -r reqs/requirements.txt | ||
- name: javascript prerequisites | ||
run: | | ||
sudo apt install clang-14 lld-14 llvm-14 nodejs libjs-d3 python3-numpy | ||
sudo apt install nodejs llvm -y | ||
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/e/emscripten/emscripten_3.1.6~dfsg-5_all.deb | ||
sudo apt install ./emscripten_3.1.6~dfsg-5_all.deb | ||
- name: make js | ||
run: | | ||
emcc -v | ||
make js | ||
node ./build/js/a.out.js 1d20 | ||
build_julia: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: go install | ||
run: sudo apt install julia | ||
- name: make julia | ||
run: make julia | ||
|
||
|
||
build_perl: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: perl install | ||
run: sudo apt install perl | ||
- name: make perl | ||
run: make perl | ||
- name: test perl | ||
run: perl src/perl/example_application.pl | ||
|
||
|
||
build_R: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: r-lib/actions/setup-r@v2 | ||
- name: make r | ||
run: make r |
4 changes: 2 additions & 2 deletions
4
.github/workflows/test_pip.yml → .github/workflows/test_packages.yml
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
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