Skip to content

Commit ce274e2

Browse files
authored
Merge pull request #151 from cisagov/improvement/drop_support_for_some_platforms
Drop support for the `linux/arm/v6`, `linux/ppc64le`, and `linux/s390x` platforms
2 parents 5660a90 + 8fcc09e commit ce274e2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,13 @@ env:
2929
CURL_CACHE_DIR: ~/.cache/curl
3030
IMAGE_NAME: cisagov/code-gov-update
3131
PIP_CACHE_DIR: ~/.cache/pip
32-
PLATFORMS: "linux/386,linux/amd64,linux/arm/v6,\
33-
linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x"
32+
# We have dropped support for the linux/arm/v6, linux/ppc64le, and linux/s390x
33+
# platforms until the run time for the build-push-all job can get below the six
34+
# hour limit that exists for GitHub Actions runners. This could either be through
35+
# some kind of optimization, when we matrix out the build so each platform runs
36+
# on its own runner, or if we start using our own runners that have a higher
37+
# time limit. Please see #150 for tracking.
38+
PLATFORMS: "linux/386,linux/amd64,linux/arm/v7,linux/arm64/v8"
3439
PRE_COMMIT_CACHE_DIR: ~/.cache/pre-commit
3540
RUN_TMATE: ${{ secrets.RUN_TMATE }}
3641

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[![Docker Pulls](https://img.shields.io/docker/pulls/cisagov/code-gov-update)](https://hub.docker.com/r/cisagov/code-gov-update)
1010
[![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/cisagov/code-gov-update)](https://hub.docker.com/r/cisagov/code-gov-update)
11-
[![Platforms](https://img.shields.io/badge/platforms-386%20%7C%20amd64%20%7C%20arm%2Fv6%20%7C%20arm%2Fv7%20%7C%20arm64%2Fv8%20%7C%20ppc64le%20%7C%20s390x-blue)](https://hub.docker.com/r/cisagov/code-gov-update/tags)
11+
[![Platforms](https://img.shields.io/badge/platforms-386%20%7C%20amd64%20%7C%20arm%2Fv6%20%7C%20arm%2Fv7%20%7C%20arm64%2Fv8-blue)](https://hub.docker.com/r/cisagov/code-gov-update/tags)
1212

1313
This project contains code for updating the DHS
1414
[code.gov](https://code.gov) inventory published

0 commit comments

Comments
 (0)