mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
40 lines
700 B
YAML
40 lines
700 B
YAML
|
#!/usr/bin/env bash
|
||
|
stages:
|
||
|
- bazel
|
||
|
|
||
|
variables:
|
||
|
SILO_KEY: rocky84-gitlabcom-ci-1
|
||
|
REMOTE_DEF: cache-silo-key=$SILO_KEY
|
||
|
REPO_OUTPUT_DIR: ci_repo_output
|
||
|
|
||
|
.bazelbase:
|
||
|
image: quay.io/peridot/ci:v0.2.5
|
||
|
before_script:
|
||
|
- mv $google_credentials /tmp/credentials.json
|
||
|
cache:
|
||
|
key: $SILO_KEY
|
||
|
paths:
|
||
|
- $REPO_OUTPUT_DIR
|
||
|
|
||
|
bazel-build:
|
||
|
extends: .bazelbase
|
||
|
stage: bazel
|
||
|
script:
|
||
|
- bash hack/run_ci build
|
||
|
|
||
|
bazel-lint:
|
||
|
extends: .bazelbase
|
||
|
stage: bazel
|
||
|
script:
|
||
|
- bash hack/run_ci lint
|
||
|
|
||
|
bazel-test:
|
||
|
extends: .bazelbase
|
||
|
stage: bazel
|
||
|
script:
|
||
|
- bash hack/run_ci test
|
||
|
artifacts:
|
||
|
when: always
|
||
|
reports:
|
||
|
junit: bazel-out/*-fastbuild/testlogs/**/*.xml
|