Skip to content

Commit a5d0ed3

Browse files
committed
MINOR: ci: CircleCI reconfiguration
Signed-off-by: Dinko Korunic <[email protected]>
1 parent a7d68b2 commit a5d0ed3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ jobs:
33
lint-scripts:
44
docker:
55
- image: koalaman/shellcheck-alpine
6+
resource_class: large
67
steps:
78
- checkout
89
- run:
@@ -13,20 +14,23 @@ jobs:
1314
lint-charts:
1415
docker:
1516
- image: quay.io/helmpack/chart-testing:latest
17+
resource_class: large
1618
steps:
1719
- checkout
1820
- run:
1921
command: |
2022
ct lint --all --validate-maintainers=false --config .circleci/ct.yaml
2123
install-charts:
2224
machine: true
25+
resource_class: large
2326
steps:
2427
- checkout
2528
- run:
2629
no_output_timeout: 20m
2730
command: .circleci/install_charts.sh
2831
release-charts:
2932
machine: true
33+
resource_class: large
3034
steps:
3135
- checkout
3236
- add_ssh_keys:

.circleci/install_charts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -o nounset
55
set -o pipefail
66

77
readonly CT_VERSION=latest
8-
readonly KIND_VERSION=v0.18.0
8+
readonly KIND_VERSION=v0.31.0
99
readonly CLUSTER_NAME=chart-testing
1010
readonly REPO_ROOT="${REPO_ROOT:-$(git rev-parse --show-toplevel)}"
1111

.circleci/install_tools.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
set -o errexit
44

5-
readonly HELM_VERSION=3.11.3
6-
readonly CHART_RELEASER_VERSION=1.5.0
5+
readonly HELM_VERSION=3.19.4
6+
readonly CHART_RELEASER_VERSION=1.8.1
77

88
install_helm() {
99
echo "Installing Helm"

0 commit comments

Comments
 (0)