You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.cirrus.star 421B

123456789101112
  1. load("github.com/SonarSource/cirrus-modules@v2", "load_features")
  2. load("cirrus", "env", "fs", "yaml")
  3. def main(ctx):
  4. if env.get("CIRRUS_REPO_FULL_NAME") == 'SonarSource/sonar-enterprise':
  5. features = yaml.dumps(load_features(ctx, only_if=dict()))
  6. doc = fs.read("private/.cirrus.yml")
  7. return features + doc
  8. # On SonarSource/sonarqube repo, we don't trigger any Cirrus build
  9. return []