Skip to content

Commit e6e6da4

Browse files
authored
devops: stop publishing Ubuntu 20.04 (#3031)
1 parent 57426b2 commit e6e6da4

File tree

4 files changed

+8
-55
lines changed

4 files changed

+8
-55
lines changed

.github/workflows/trigger_internal_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
trigger:
1111
name: "trigger"
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- run: |
1515
curl -X POST \

utils/docker/Dockerfile.focal

-34
This file was deleted.

utils/docker/build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ set -e
33
set +x
44

55
if [[ ($1 == '--help') || ($1 == '-h') || ($1 == '') || ($2 == '') ]]; then
6-
echo "usage: $(basename $0) {--arm64,--amd64} {focal,jammy} playwright:localbuild-focal"
6+
echo "usage: $(basename $0) {--arm64,--amd64} {jammy,noble} playwright:localbuild-noble"
77
echo
8-
echo "Build Playwright docker image and tag it as 'playwright:localbuild-focal'."
8+
echo "Build Playwright docker image and tag it as 'playwright:localbuild-noble'."
99
echo "Once image is built, you can run it with"
1010
echo ""
11-
echo " docker run --rm -it playwright:localbuild-focal /bin/bash"
11+
echo " docker run --rm -it playwright:localbuild-noble /bin/bash"
1212
echo ""
1313
echo "NOTE: this requires on Playwright dependencies to be installed with 'npm install'"
1414
echo " and Playwright itself being built with 'npm run build'"

utils/docker/publish_docker.sh

+4-17
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@ else
2121
exit 1
2222
fi
2323

24-
# Ubuntu 20.04
25-
FOCAL_TAGS=(
26-
"v${PW_VERSION}-focal"
27-
)
28-
2924
# Ubuntu 22.04
3025
JAMMY_TAGS=(
3126
"v${PW_VERSION}-jammy"
@@ -69,14 +64,12 @@ install_oras_if_needed() {
6964
publish_docker_images_with_arch_suffix() {
7065
local FLAVOR="$1"
7166
local TAGS=()
72-
if [[ "$FLAVOR" == "focal" ]]; then
73-
TAGS=("${FOCAL_TAGS[@]}")
74-
elif [[ "$FLAVOR" == "jammy" ]]; then
67+
if [[ "$FLAVOR" == "jammy" ]]; then
7568
TAGS=("${JAMMY_TAGS[@]}")
7669
elif [[ "$FLAVOR" == "noble" ]]; then
7770
TAGS=("${NOBLE_TAGS[@]}")
7871
else
79-
echo "ERROR: unknown flavor - $FLAVOR. Must be either 'focal', 'jammy' or 'noble'"
72+
echo "ERROR: unknown flavor - $FLAVOR. Must be either 'jammy' or 'noble'"
8073
exit 1
8174
fi
8275
local ARCH="$2"
@@ -97,14 +90,12 @@ publish_docker_images_with_arch_suffix() {
9790
publish_docker_manifest () {
9891
local FLAVOR="$1"
9992
local TAGS=()
100-
if [[ "$FLAVOR" == "focal" ]]; then
101-
TAGS=("${FOCAL_TAGS[@]}")
102-
elif [[ "$FLAVOR" == "jammy" ]]; then
93+
if [[ "$FLAVOR" == "jammy" ]]; then
10394
TAGS=("${JAMMY_TAGS[@]}")
10495
elif [[ "$FLAVOR" == "noble" ]]; then
10596
TAGS=("${NOBLE_TAGS[@]}")
10697
else
107-
echo "ERROR: unknown flavor - $FLAVOR. Must be either 'focal', 'jammy' or 'noble'"
98+
echo "ERROR: unknown flavor - $FLAVOR. Must be either 'jammy' or 'noble'"
10899
exit 1
109100
fi
110101

@@ -123,10 +114,6 @@ publish_docker_manifest () {
123114
done
124115
}
125116

126-
publish_docker_images_with_arch_suffix focal amd64
127-
publish_docker_images_with_arch_suffix focal arm64
128-
publish_docker_manifest focal amd64 arm64
129-
130117
publish_docker_images_with_arch_suffix jammy amd64
131118
publish_docker_images_with_arch_suffix jammy arm64
132119
publish_docker_manifest jammy amd64 arm64

0 commit comments

Comments
 (0)