-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Oleg Plakida
committed
Jul 20, 2023
1 parent
a1e3fd9
commit 870313d
Showing
30 changed files
with
33 additions
and
10,032 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
stages: | ||
- test | ||
- build | ||
|
||
variables: | ||
CI_IMAGE: "docker.io/paritytech/ci-unified:latest" | ||
BUILDAH_IMAGE: "quay.io/buildah/stable:v1.29" | ||
BUILDAH_COMMAND: "buildah --storage-driver overlay2" | ||
VAULT_ADDR: "https://vault.parity-mgmt-vault.parity.io" | ||
VAULT_AUTH_PATH: "gitlab-parity-io-jwt" | ||
VAULT_AUTH_ROLE: "gitlab_${CI_PROJECT_NAME}" | ||
HELM_SECRETS_DRIVER: vals | ||
|
||
default: | ||
image: $CI_IMAGE | ||
tags: | ||
- linux-docker-vm-c2 | ||
|
||
test-unit: | ||
stage: test | ||
script: | ||
- echo "Test..." | ||
build: | ||
stage: build | ||
script: | ||
- apt update && apt install apt-transport-https curl gnupg -y; | ||
curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor >bazel-archive-keyring.gpg; | ||
mv bazel-archive-keyring.gpg /usr/share/keyrings; | ||
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list | ||
- apt update && apt install bazel -y | ||
- bazel build //cli --action_env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --remote_cache=https://storage.googleapis.com/bazel-cache-parity-build --google_default_credentials | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.