Skip to content

Commit

Permalink
initial gitlab ci trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
davejrt committed Feb 16, 2024
1 parent ec0ff6e commit d0848a0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
stages:
- test

trigger_pipeline:
stage: test
rules:
- if: $CI_COMMIT_BRANCH =~ /^dev|^release-.*/ || $CI_COMMIT_TAG != "" # only/except rules are no longer actively developed. Please use `rules` instead.
- if: $CI_PIPELINE_SOURCE == "external_pull_request_event"
changes:
- "!.github/workflows/quarto-render.yml"
- "!_quarto.yml"
- "!quarto-materials/*"
- "!**/.md"
- "!tiledb/doxygen/source/*"
- "!tiledb/sm/c_api/tiledb_version.h"

variables:
TILEDB_REF: ${CI_COMMIT_REF_NAME}
trigger:
project: tiledb-inc/tiledb-rest-ci
strategy: depend

0 comments on commit d0848a0

Please sign in to comment.