mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
devops: move docker publishing logic to main repo (#10768)
This patch: - moves docker publishing to main repo - extracts all the logic from the GHA YML file to Bash - starts using the script in both `publish_canary.yml` and `publish_release.yml` Fixes #10351
This commit is contained in:
parent
070b18e755
commit
6ea607ce2a
19
.github/workflows/publish_canary.yml
vendored
19
.github/workflows/publish_canary.yml
vendored
@ -52,18 +52,13 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
utils/build/build-playwright-driver.sh
|
utils/build/build-playwright-driver.sh
|
||||||
utils/build/upload-playwright-driver.sh
|
utils/build/upload-playwright-driver.sh
|
||||||
- name: trigger docker build
|
- uses: azure/docker-login@v1
|
||||||
run: |
|
with:
|
||||||
VERSION=$(node -e 'console.log(require("./package.json").version)')
|
login-server: playwright.azurecr.io
|
||||||
if [[ "${VERSION}" != *-* ]]; then
|
username: playwright
|
||||||
echo "ERROR: canary version must have dash inside, received '${VERSION}' instead"
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
exit 1
|
- name: publish docker canary
|
||||||
fi
|
run: ./utils/docker/publish_docker.sh canary
|
||||||
curl -X POST \
|
|
||||||
-H "Accept: application/vnd.github.v3+json" \
|
|
||||||
-H "Authorization: token ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}" \
|
|
||||||
--data "{\"event_type\": \"publish_docker\", \"client_payload\": {\"ref\": \"${{ github.sha }}\", \"package_version\": \"${VERSION}\", \"release_channel\": \"canary\"}}" \
|
|
||||||
https://api.github.com/repos/microsoft/playwright-internal/dispatches
|
|
||||||
|
|
||||||
publish-trace-viewer:
|
publish-trace-viewer:
|
||||||
name: "publish Trace Viewer to trace.playwright.dev"
|
name: "publish Trace Viewer to trace.playwright.dev"
|
||||||
|
|||||||
19
.github/workflows/publish_release.yml
vendored
19
.github/workflows/publish_release.yml
vendored
@ -49,7 +49,7 @@ jobs:
|
|||||||
AZ_ACCOUNT_KEY: ${{ secrets.AZ_ACCOUNT_KEY }}
|
AZ_ACCOUNT_KEY: ${{ secrets.AZ_ACCOUNT_KEY }}
|
||||||
AZ_ACCOUNT_NAME: ${{ secrets.AZ_ACCOUNT_NAME }}
|
AZ_ACCOUNT_NAME: ${{ secrets.AZ_ACCOUNT_NAME }}
|
||||||
|
|
||||||
trigger-docker-build:
|
publish-docker-release:
|
||||||
name: "publish to DockerHub"
|
name: "publish to DockerHub"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
if: github.repository == 'microsoft/playwright'
|
if: github.repository == 'microsoft/playwright'
|
||||||
@ -59,13 +59,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 12
|
node-version: 12
|
||||||
registry-url: 'https://registry.npmjs.org'
|
registry-url: 'https://registry.npmjs.org'
|
||||||
- run: |
|
- uses: azure/docker-login@v1
|
||||||
VERSION=$(node -e 'console.log(require("./package.json").version)')
|
with:
|
||||||
curl -X POST \
|
login-server: playwright.azurecr.io
|
||||||
-H "Accept: application/vnd.github.v3+json" \
|
username: playwright
|
||||||
-H "Authorization: token ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}" \
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
--data "{\"event_type\": \"publish_docker\", \"client_payload\": {\"ref\": \"${{ github.sha }}\", \"package_version\": \"${VERSION}\", \"release_channel\": \"stable\"}}" \
|
- run: npm i -g npm@8
|
||||||
https://api.github.com/repos/microsoft/playwright-internal/dispatches
|
- run: npm ci
|
||||||
|
- run: npm run build
|
||||||
|
- run: npx playwright install-deps
|
||||||
|
- run: ./utils/docker/publish_docker.sh stable
|
||||||
|
|
||||||
publish-trace-viewer:
|
publish-trace-viewer:
|
||||||
name: "publish Trace Viewer to trace.playwright.dev"
|
name: "publish Trace Viewer to trace.playwright.dev"
|
||||||
|
|||||||
111
utils/docker/publish_docker.sh
Executable file
111
utils/docker/publish_docker.sh
Executable file
@ -0,0 +1,111 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set +x
|
||||||
|
|
||||||
|
trap "cd $(pwd -P)" EXIT
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
PW_VERSION=$(node -e 'console.log(require("../../package.json").version)')
|
||||||
|
RELEASE_CHANNEL="$1"
|
||||||
|
if [[ "${RELEASE_CHANNEL}" == "stable" ]]; then
|
||||||
|
if [[ "${PW_VERSION}" == *-* ]]; then
|
||||||
|
echo "ERROR: cannot publish stable docker with Playwright version '${PW_VERSION}'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
elif [[ "${RELEASE_CHANNEL}" == "canary" ]]; then
|
||||||
|
if [[ "${PW_VERSION}" != *-* ]]; then
|
||||||
|
echo "ERROR: cannot publish canary docker with Playwright version '${PW_VERSION}'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "ERROR: unknown release channel - ${RELEASE_CHANNEL}"
|
||||||
|
echo "Must be either 'stable' or 'canary'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "${GITHUB_SHA}" ]]; then
|
||||||
|
echo "ERROR: GITHUB_SHA env variable must be specified"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
BIONIC_TAGS=(
|
||||||
|
"next-bionic"
|
||||||
|
"v${PW_VERSION}-bionic"
|
||||||
|
)
|
||||||
|
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
|
||||||
|
BIONIC_TAGS+=("bionic")
|
||||||
|
fi
|
||||||
|
|
||||||
|
FOCAL_TAGS=(
|
||||||
|
"next"
|
||||||
|
"sha-${GITHUB_SHA}"
|
||||||
|
"next-focal"
|
||||||
|
"v${PW_VERSION}-focal"
|
||||||
|
"v${PW_VERSION}"
|
||||||
|
)
|
||||||
|
|
||||||
|
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
|
||||||
|
FOCAL_TAGS+=("latest")
|
||||||
|
FOCAL_TAGS+=("focal")
|
||||||
|
fi
|
||||||
|
|
||||||
|
publish_docker_images_with_arch_suffix() {
|
||||||
|
local FLAVOR="$1"
|
||||||
|
local TAGS=()
|
||||||
|
if [[ "$FLAVOR" == "bionic" ]]; then
|
||||||
|
TAGS=("${BIONIC_TAGS[@]}")
|
||||||
|
elif [[ "$FLAVOR" == "focal" ]]; then
|
||||||
|
TAGS=("${FOCAL_TAGS[@]}")
|
||||||
|
else
|
||||||
|
echo "ERROR: unknown flavor - $FLAVOR. Must be either 'bionic' or 'focal'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
local ARCH="$2"
|
||||||
|
if [[ "$ARCH" != "amd64" && "$ARCH" != "arm64" ]]; then
|
||||||
|
echo "ERROR: unknown arch - $ARCH. Must be either 'amd64' or 'arm64'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# Prune docker images to avoid platform conflicts
|
||||||
|
docker system prune -fa
|
||||||
|
./build.sh "--${ARCH}" "${FLAVOR}" playwright:localbuild
|
||||||
|
|
||||||
|
for ((i = 0; i < ${#TAGS[@]}; i++)) do
|
||||||
|
local TAG="${TAGS[$i]}"
|
||||||
|
./tag_and_push.sh playwright:localbuild "playwright.azurecr.io/public/playwright:${TAG}-${ARCH}"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
publish_docker_manifest () {
|
||||||
|
local FLAVOR="$1"
|
||||||
|
local TAGS=()
|
||||||
|
if [[ "$FLAVOR" == "bionic" ]]; then
|
||||||
|
TAGS=("${BIONIC_TAGS[@]}")
|
||||||
|
elif [[ "$FLAVOR" == "focal" ]]; then
|
||||||
|
TAGS=("${FOCAL_TAGS[@]}")
|
||||||
|
else
|
||||||
|
echo "ERROR: unknown flavor - $FLAVOR. Must be either 'bionic' or 'focal'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
for ((i = 0; i < ${#TAGS[@]}; i++)) do
|
||||||
|
local TAG="${TAGS[$i]}"
|
||||||
|
local BASE_IMAGE_TAG="playwright.azurecr.io/public/playwright:${TAG}"
|
||||||
|
local IMAGE_NAMES=""
|
||||||
|
if [[ "$2" == "arm64" || "$2" == "amd64" ]]; then
|
||||||
|
IMAGE_NAMES="${IMAGE_NAMES} ${BASE_IMAGE_TAG}-$2"
|
||||||
|
fi
|
||||||
|
if [[ "$3" == "arm64" || "$3" == "amd64" ]]; then
|
||||||
|
IMAGE_NAMES="${IMAGE_NAMES} ${BASE_IMAGE_TAG}-$3"
|
||||||
|
fi
|
||||||
|
docker manifest create "${BASE_IMAGE_TAG}" $IMAGE_NAMES
|
||||||
|
docker manifest push "${BASE_IMAGE_TAG}"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
publish_docker_images_with_arch_suffix bionic amd64
|
||||||
|
publish_docker_manifest bionic amd64
|
||||||
|
|
||||||
|
publish_docker_images_with_arch_suffix focal amd64
|
||||||
|
publish_docker_images_with_arch_suffix focal arm64
|
||||||
|
publish_docker_manifest focal amd64 arm64
|
||||||
Loading…
x
Reference in New Issue
Block a user