Commit 703ad0e8 authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

Merge branch 'remove-telemetry' into 'main'

fix: remove telemetry

See merge request just-ci/templates!174
parents 1b453cec a504e8e7
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -148,14 +148,3 @@ configure pipelines for monorepos and polyrepos.
## Contributing

See [`CONTRIBUTING.md`](CONTRIBUTING.md)

## Telemetry

We collect metrics by default about how our templates are used. We use this to
determine which jobs are most popular, which are not used, which fail often, all
in order to improve our templates and have an understanding of its use in the
world.

These values are collected in an InfluxDB instance we run ourselves.

This can be disabled by setting the variable `TELEMETRY_OPTOUT` to any value.
+0 −4
Original line number Diff line number Diff line
---
include:
  - local: project-automation/telemetry.yml

variables:
  C_EXCLUDE_PATHS: tests
  C_EXCLUDE_REGEX: (tests)

.c:pre:
  extends: .telemetry
  image:
    name: registry.gitlab.com/just-ci/images/c:latest
    entrypoint: [""]
+1 −6
Original line number Diff line number Diff line
---
include:
  - local: project-automation/telemetry.yml

variables:
  IMAGE_NAME: automatic
  IMAGE_CONTAINERFILE: automatic
@@ -72,6 +69,4 @@ variables:

# Don't extend this one, unless you intend to re-use your first image settings in a monorepo
image:build:
  extends:
    - .image:build
    - .telemetry
  extends: .image:build
+0 −4
Original line number Diff line number Diff line
@@ -3,11 +3,7 @@
# docker run --rm -ti -p 127.0.0.1:8080:8080 -v "${PWD}:/pwd" -w /pwd docker.io/marpteam/marp-cli:latest -s .

# This currently assumes a single presentation. Having more will probably work fine, but may provide unexpected results.
include:
  - local: project-automation/telemetry.yml

docs:md-presentation:
  extends: .telemetry
  image:
    name: docker.io/marpteam/marp-cli:latest
    entrypoint: [""]
+0 −4
Original line number Diff line number Diff line
---
include:
  - local: project-automation/telemetry.yml

variables:
  PRETTIER_DEFAULT_ARGS:
    --check --ignore-unknown --config-precedence file-override
@@ -9,7 +6,6 @@ variables:
  PRETTIER_CHECK_PATH: "."

docs:prettier:
  extends: .telemetry
  stage: test
  image:
    name: registry.gitlab.com/just-ci/images/prettier:latest
Loading