1
0
Fork 0

fix(build): pull images from Nexus

This commit is contained in:
ssube 2021-05-03 08:54:34 -05:00
parent 46f433d62e
commit e6c68a3588
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
2 changed files with 16 additions and 9 deletions

View File

@ -6,12 +6,12 @@
.build-curl:
extends:
- .shared-runner
image: apextoaster/base:1.4
image: docker.artifacts.apextoaster.com/apextoaster/base:1.4
.build-climate:
extends:
- .shared-runner
image: apextoaster/code-climate:0.6
image: docker.artifacts.apextoaster.com/apextoaster/code-climate:0.6
allow_failure: false
variables:
CI_BRANCH: "${CI_COMMIT_REF_NAME}"
@ -21,15 +21,15 @@
.build-codecov:
extends:
- .shared-runner
image: apextoaster/codecov:3.1
image: docker.artifacts.apextoaster.com/apextoaster/codecov:3.1
allow_failure: false
.build-docker:
extends:
- .shared-runner
image: apextoaster/docker:18.09
image: docker.artifacts.apextoaster.com/apextoaster/docker:18.09
services:
- apextoaster/docker-dind:18.09
- docker.artifacts.apextoaster.com/apextoaster/docker-dind:18.09
allow_failure: false
before_script:
@ -47,13 +47,13 @@
.build-go:
extends:
- .shared-runner
image: golang:1.13
image: docker.artifacts.apextoaster.com/golang:1.13
allow_failure: false
.build-node:
extends:
- .shared-runner
image: apextoaster/node:11.15
image: docker.artifacts.apextoaster.com/apextoaster/node:11.15
allow_failure: false
before_script:
@ -62,10 +62,10 @@
.build-python:
extends:
- .shared-runner
image: python:3.7
image: docker.artifacts.apextoaster.com/python:3.7
.build-sonar:
extends:
- .shared-runner
image: apextoaster/sonar-scanner:3.3
image: docker.artifacts.apextoaster.com/apextoaster/sonar-scanner:3.3
allow_failure: false

7
scripts/prom-parse.py Normal file
View File

@ -0,0 +1,7 @@
from prometheus_client.parser import text_string_to_metric_families
import sys
metrics = text_string_to_metric_families(sys.stdin.read())
for family in metrics:
for sample in family.samples:
print('{0} ({1}): {2}'.format(*sample))