@@ -55,15 +55,15 @@ aliases:
55
55
docker :
56
56
# Using the 'runner' container where each job will be executed.
57
57
# This container has all the necessary tools to run a dockerized environment.
58
- # @see https://github.com/drevops/ci-runner
59
- # @see https://hub.docker.com/repository/docker/drevops/ci-runner/tags
58
+ # https://github.com/drevops/ci-runner
59
+ # https://hub.docker.com/repository/docker/drevops/ci-runner/tags
60
60
- image : drevops/ci-runner:25.3.0
61
61
auth :
62
62
username : ${VORTEX_CONTAINER_REGISTRY_USER}
63
63
password : ${VORTEX_CONTAINER_REGISTRY_PASS}
64
64
environment :
65
65
# Set runner timezone to ensure that executed operations use correct timestamps.
66
- # @see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
66
+ # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
67
67
TZ : " Australia/Melbourne"
68
68
# Set runner terminal capabilities.
69
69
TERM : xterm-256color
@@ -96,7 +96,7 @@ aliases:
96
96
# Check only minimal stack requirements.
97
97
VORTEX_DOCTOR_CHECK_MINIMAL : 1
98
98
# CI runner resource class.
99
- # @see https://circleci.com/docs/2.0/configuration-reference/#resource_class
99
+ # https://circleci.com/docs/2.0/configuration-reference/#resource_class
100
100
# Change to 'large' for faster builds.
101
101
resource_class : medium
102
102
@@ -105,7 +105,7 @@ aliases:
105
105
setup_remote_docker :
106
106
# Docker Layer Caching allows to significantly speed up builds by caching
107
107
# images built during previous runs.
108
- # @see https://circleci.com/docs/2.0/docker-layer-caching/
108
+ # https://circleci.com/docs/2.0/docker-layer-caching/
109
109
docker_layer_caching : false
110
110
version : default
111
111
@@ -154,7 +154,7 @@ jobs:
154
154
- restore_cache :
155
155
keys :
156
156
# Restore DB cache based on the cache strategy set by the cache keys below.
157
- # @see https://circleci.com/docs/2.0/caching/#restoring-cache
157
+ # https://circleci.com/docs/2.0/caching/#restoring-cache
158
158
# Change 'v1' to 'v2', 'v3' etc., commit and push to force cache reset.
159
159
# Lookup cache based on the default branch and a timestamp. Allows
160
160
# to use cache from the very first build on the day (sanitized database dump, for example).
@@ -236,7 +236,7 @@ jobs:
236
236
- restore_cache :
237
237
keys :
238
238
# Use cached artifacts from previous builds of this branch.
239
- # @see https://circleci.com/docs/2.0/caching/#restoring-cache
239
+ # https://circleci.com/docs/2.0/caching/#restoring-cache
240
240
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-{{ checksum "/tmp/db_cache_timestamp" }}
241
241
- v25.3.0-db11-{{ checksum "/tmp/db_cache_branch" }}-{{ checksum "/tmp/db_cache_fallback_yes" }}-
242
242
# ;> !PROVISION_TYPE_PROFILE
0 commit comments