initial commit

This commit is contained in:
2025-02-23 21:24:37 +01:00
commit b368f6200c
56 changed files with 2573 additions and 0 deletions

34
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,34 @@
default:
# https://gitlab.com/mtczekajlo/lsm6ds3tr-rs-docker
image: registry.gitlab.com/mtczekajlo/lsm6ds3tr-rs-docker:f3598e64faee1b7e66b2bb792fce3290
stages:
- check
- build
- test
check:
stage: check
dependencies: []
script:
- ci/jobs/check
doc:
stage: check
dependencies: []
script:
- ci/jobs/doc
build:
stage: build
needs: ["check"]
dependencies: ["check"]
script:
- ci/jobs/build
test:
stage: test
needs: ["build"]
dependencies: ["build"]
script:
- ci/jobs/test