Skip to content

Commit 866e8af

Browse files
committed
Merge branch 'bindings' into 'main'
bindings: add bindings for non-Rust languages See merge request rml/proc/algemaploom-rs!5
2 parents ea7fdb3 + a0e594e commit 866e8af

35 files changed

+1096
-99
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ output/
88
*.json
99

1010
test_resources/
11+
12+
node_modules/
13+
src/python/ltranslator.so

.gitlab-ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
test:
2+
image: rustdocker/rust:stable
3+
stage: test
4+
script:
5+
- cargo test --verbose --jobs 1
6+
7+
build:
8+
image: rustdocker/rust:stable
9+
stage: build
10+
script:
11+
- apt update
12+
- apt install -y openjdk-17-jdk curl
13+
- curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash -
14+
- sudo apt-get install -y nodejs
15+
- ./build.sh
16+

0 commit comments

Comments
 (0)