Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use self hosted runner for concourse builds and deprecate circleci completely #3095

Merged
merged 5 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
355 changes: 0 additions & 355 deletions .circleci/config.yml

This file was deleted.

18 changes: 11 additions & 7 deletions ci/image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
FROM node:18-alpine
FROM node:20-alpine

RUN apk update \
&& apk add bash curl wget tar git jq make perl-utils \
&& apk add bash curl wget tar git jq make perl-utils python3 \
&& apk add yq --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community

RUN curl -sSL https://sdk.cloud.google.com | bash
ENV PATH $PATH:/root/google-cloud-sdk/bin

ENV GH_CLI_VERSION 2.23.0
RUN mkdir ghcli && cd ghcli \
&& wget https://github.com/cli/cli/releases/download/v${GH_CLI_VERSION}/gh_${GH_CLI_VERSION}_linux_386.tar.gz -O ghcli.tar.gz \
Expand All @@ -22,12 +25,13 @@ RUN wget https://github.com/minamijoyo/hcledit/releases/download/v${HCLEDIT_VERS
&& chmod +x /usr/local/bin/hcledit \
&& rm hcledit_${HCLEDIT_VERSION}_linux_amd64.tar.gz

ARG GHTOKEN_VERSION=2.0.1
RUN wget -O ghtoken \
https://raw.githubusercontent.com/Link-/gh-token/main/gh-token && \
echo "6a6b111355432e08dd60ac0da148e489cdb0323a059ee8cbe624fd37bf2572ae ghtoken" | \
shasum -c - && \
chmod u+x ./ghtoken && \
mv ./ghtoken /usr/local/bin/ghtoken
https://github.com/Link-/gh-token/releases/download/v${GHTOKEN_VERSION}/linux-amd64 && \
echo "f76e8cb35f0b04b59073a486cc952e50fa9f1c930a25619ea9abcf44a13165c4 ghtoken" | \
shasum -c - && \
chmod u+x ./ghtoken && \
mv ./ghtoken /usr/local/bin/ghtoken

RUN wget https://github.com/mike-engel/jwt-cli/releases/download/4.0.0/jwt-linux.tar.gz \
&& echo "6b0740c3f4c7134a0cbcf802b95b033bd2246d592ad16aa2ee2d80e5b289b4d6 jwt-linux.tar.gz" > jwt-linux.sha256 \
Expand Down
Loading
Loading