Skip to content

Commit

Permalink
Trent/image ci (#25)
Browse files Browse the repository at this point in the history
Co-authored-by: nicholas-codecov <nicholas.deschenes@sentry.io>
  • Loading branch information
trent-codecov and nicholas-codecov committed Dec 12, 2023
1 parent 7fcb70b commit 0160343
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/test-api-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test API Image CI

on:
pull_request:
paths:
- integration-tests/test-api/**

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true


jobs:
build:
name: Build API Test
uses: codecov/gha-workflows/.github/workflows/build-and-push-dockerhub.yml@v1.2.14
secrets: inherit
with:
push: false
image_name: codecov-javascript-bundler-plugins-test-api
docker_path: integration-tests/test-api
24 changes: 24 additions & 0 deletions .github/workflows/test-api-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test API Image Push

on:
push:
branches:
- main
paths:
- integration-tests/test-api/**

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true


jobs:
push:
name: Push API Test
if: github.repository_owner == 'codecov'
uses: codecov/gha-workflows/.github/workflows/build-and-push-dockerhub.yml@v1.2.14
secrets: inherit
with:
push: true
image_name: codecov-javascript-bundler-plugins-test-api
docker_path: integration-tests/test-api
28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
DOCKERHUB_REPO ?= codecov
IMAGE_NAME ?= codecov-javascript-bundler-plugins-test-api
DOCKER_PATH ?= integration-tests/test-api
OS_NAME := $(shell uname -s | tr A-Z a-z)
build_date := $(shell git show -s --date=iso8601-strict --pretty=format:%cd $$sha)
BUILD_PLATFORM := $(shell docker system info --format '{{.OSType}}/{{.Architecture}}')
sha := $(shell git rev-parse --short=7 HEAD)
dockerhub_image := ${DOCKERHUB_REPO}/${IMAGE_NAME}
export DOCKER_BUILDKIT := 1

build.${IMAGE_NAME}:
docker build -f ${DOCKER_PATH}/Dockerfile ${DOCKER_PATH} -t ${dockerhub_image}:latest \
-t ${dockerhub_image}:${sha} \
--label "org.label-schema.build-date"="$(build_date)" \
--label "org.label-schema.name"="${IMAGE_NAME}" \
--label "org.label-schema.vendor"="Codecov" \
--label "org.label-schema.version"="${sha}" \
--build-arg BUILDPLATFORM=${BUILD_PLATFORM}

tag.${IMAGE_NAME}:
docker tag ${dockerhub_image}:${sha} ${dockerhub_image}:latest

push.${IMAGE_NAME}:
docker push ${dockerhub_image}:latest
docker push ${dockerhub_image}:${sha}

save.${IMAGE_NAME}:
docker save -o ${IMAGE_NAME}.tar ${dockerhub_image}:${sha}
4 changes: 3 additions & 1 deletion integration-tests/test-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM --platform=arm64 node:20-alpine
# syntax=docker/dockerfile:1
ARG BUILDPLATFORM=arm64
FROM --platform=$BUILDPLATFORM node:20-alpine
WORKDIR /app

ENV NODE_ENV=production
Expand Down

0 comments on commit 0160343

Please sign in to comment.