diff --git a/.github/workflows/cicd-mongo.yml b/.github/workflows/cicd-mongo.yml new file mode 100644 index 0000000..bc2501f --- /dev/null +++ b/.github/workflows/cicd-mongo.yml @@ -0,0 +1,26 @@ +name: CICD-MongoDB + +on: + push: + branches: [ "main" ] + paths-ignore: + - 'doc/**' + pull_request: + branches: [ "main" ] + paths-ignore: + - 'doc/**' + +env: + CARGO_TERM_COLOR: always + +jobs: + CICD: + + runs-on: self-hosted + name: CICD-MongoDB + steps: + - uses: actions/checkout@v3 + - name: Enable MongoDB docker + run: | + source scripts/start-happypath.sh + ATD_MEMSZ=8g run_workload -d test -i mongo -j '.writableFS=true | .uids+=[999] | .entrypoint+=["mongod"]'