Add sourcehut CI

Stephen Paul Weber created

Change summary

.builds/debian-stable.yml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)

Detailed changes

.builds/debian-stable.yml 🔗

@@ -0,0 +1,22 @@
+image: debian/stable
+sources:
+- https://git.sr.ht/~singpolyma/sgx-jmp
+packages:
+- ruby
+- ruby-dev
+- bundler
+- libxml2-dev
+- libpq-dev
+- rubocop
+environment:
+  LANG: C.UTF-8
+tasks:
+- dependencies: |
+    cd sgx-jmp
+    bundle install --without=development --path=.gems
+- lint: |
+    cd sgx-jmp
+    rubocop
+- test: |
+    cd sgx-jmp
+    RANTLY_COUNT=100 bundle exec rake test