Skip to content

Commit

Permalink
Merge branch 'bindings' into 'main'
Browse files Browse the repository at this point in the history
bindings: add bindings for non-Rust languages

See merge request rml/proc/algemaploom-rs!5
  • Loading branch information
s-minoo committed Jul 9, 2024
2 parents ea7fdb3 + a0e594e commit 866e8af
Show file tree
Hide file tree
Showing 35 changed files with 1,096 additions and 99 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ output/
*.json

test_resources/

node_modules/
src/python/ltranslator.so
16 changes: 16 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
test:
image: rustdocker/rust:stable
stage: test
script:
- cargo test --verbose --jobs 1

build:
image: rustdocker/rust:stable
stage: build
script:
- apt update
- apt install -y openjdk-17-jdk curl
- curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash -
- sudo apt-get install -y nodejs
- ./build.sh

Loading

0 comments on commit 866e8af

Please sign in to comment.