-
Notifications
You must be signed in to change notification settings - Fork 806
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' into remove/my-mailboxes-menu-item
- Loading branch information
Showing
903 changed files
with
9,693 additions
and
7,895 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
#!/bin/bash | ||
|
||
## Environment used by this script: | ||
# | ||
# Required: | ||
# - GITHUB_SHA: Commit SHA. | ||
# - PR_ID: PR number or "trunk". | ||
# - SECRET: Shared secret. | ||
|
||
set -eo pipefail | ||
|
||
if [[ ! -f coverage/summary.tsv ]]; then | ||
echo 'No coverage was generated.' | ||
exit 0 | ||
fi | ||
|
||
mkdir coverage-data | ||
cp coverage/summary.tsv coverage-data/summary.tsv | ||
gzip -9 coverage-data/summary.tsv | ||
|
||
if [[ -f coverage/js-combined.json ]]; then | ||
echo '::group::Pnpm install' | ||
pnpm install | ||
echo '::endgroup::' | ||
|
||
echo '::group::Generating JS coverage report' | ||
.github/files/coverage-munger/node_modules/.bin/nyc report --no-exclude-after-remap --report-dir=coverage-data/js --temp-dir=coverage/ --reporter=html-spa | ||
echo '::endgroup::' | ||
fi | ||
|
||
if [[ -f coverage/php-combined.cov ]]; then | ||
echo '::group::Composer install' | ||
composer --working-dir=.github/files/coverage-munger/ update | ||
echo '::endgroup::' | ||
|
||
echo '::group::Generating PHP coverage report' | ||
.github/files/coverage-munger/vendor/bin/phpcov merge --html coverage-data/php coverage/ | ||
echo '::endgroup::' | ||
fi | ||
|
||
echo '::group::Creating zip file' | ||
zip -Xr9 coverage-data.zip coverage-data/ | ||
echo '::endgroup::' | ||
|
||
echo '::group::Uploading zip file' | ||
# Because we don't know how big the zip is going to wind up being and have to upload via HTTP, | ||
# we created a simple chunked-upload protocol. This sends one command. | ||
# | ||
# $1 - Query parameters. | ||
# $2 - Chunk filename, if any. | ||
# $SECRET - Shared secret. | ||
# | ||
# Output: | ||
# JSON - JSON response. Also printed. | ||
function do_req { | ||
local args=( | ||
--header "Shared-Secret: $SECRET" | ||
--url "https://jetpackcodecoverage.atomicsites.blog/upload-coverage-data.php?$1" | ||
) | ||
if [[ -n "$2" ]]; then | ||
args+=( --form "chunk=@$2" ) | ||
fi | ||
|
||
echo "=> $1" | ||
if JSON=$( curl "${args[@]}" ) && jq -e '.ok == true' <<<"$JSON" &>/dev/null; then | ||
jq . <<<"$JSON" | ||
return 0 | ||
fi | ||
echo "::error::Upload failed: ${JSON/$'\n'/%0A}" | ||
return 1 | ||
} | ||
|
||
SZ=$( stat -c %s coverage-data.zip ) | ||
SHA=$( sha256sum coverage-data.zip ) | ||
ID=$( jq --arg V "$PR_ID" -nr '$V | @uri' ) | ||
COMMIT=$( jq --arg V "$GITHUB_SHA" -nr '$V | @uri' ) | ||
do_req "op=begin&id=$ID&commit=$COMMIT&len=$SZ&sha=${SHA%% *}" | ||
TOKEN=$( jq -r '.token | @uri' <<<"$JSON" ) | ||
CSZ=$( jq -r .chunkSize <<<"$JSON" ) | ||
|
||
# Abort upload on exit | ||
function onexit { | ||
if [[ -n "$TOKEN" ]]; then | ||
do_req "op=abort&token=$TOKEN" || true | ||
TOKEN= | ||
fi | ||
} | ||
trap onexit exit | ||
|
||
for (( O=0; O < SZ; O+=CSZ )); do | ||
dd if=coverage-data.zip of=chunk bs=32K skip=${O}B count=${CSZ}B | ||
do_req "op=chunk&token=$TOKEN" chunk | ||
done | ||
|
||
do_req "op=finish&token=$TOKEN" | ||
TOKEN= | ||
echo '::endgroup::' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
name: Build Monorepo Docker | ||
on: | ||
push: | ||
branches: [ 'trunk' ] | ||
paths: | ||
- 'tools/docker/Dockerfile.monorepo' | ||
- 'tools/docker/bin/monorepo' | ||
- '.github/versions.sh' | ||
- '.github/workflows/build-docker-monorepo.yml' | ||
pull_request: | ||
paths: | ||
- 'tools/docker/Dockerfile.monorepo' | ||
- 'tools/docker/bin/monorepo' | ||
- '.github/versions.sh' | ||
- '.github/workflows/build-docker-monorepo.yml' | ||
concurrency: | ||
group: build-docker-monorepo-${{ github.event_name }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build and publish Jetpack Monorepo Environment | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: read | ||
timeout-minutes: 60 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up qemu | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: arm64 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: matticbot | ||
password: ${{ secrets.DOCKER_HUB_MATTICBOT_TOKEN }} | ||
|
||
- name: Log in to GitHub Packages | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Fetch build args | ||
id: buildargs | ||
run: | | ||
source .github/versions.sh | ||
source .github/files/gh-funcs.sh | ||
gh_set_output php-version "$PHP_VERSION" | ||
gh_set_output composer-version "$COMPOSER_VERSION" | ||
gh_set_output node-version "$NODE_VERSION" | ||
gh_set_output pnpm-version "$PNPM_VERSION" | ||
if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then | ||
gh_set_output tags "type=raw,latest" | ||
gh_set_output images $'automattic/jetpack-monorepo\nghcr.io/automattic/jetpack-monorepo' | ||
elif [[ "$GITHUB_EVENT_NAME" == "pull_request" ]]; then | ||
gh_set_output tags "type=ref,event=pr" | ||
gh_set_output images "ghcr.io/automattic/jetpack-monorepo" | ||
else | ||
echo "Unknown GITHUB_EVENT_NAME $GITHUB_EVENT_NAME" | ||
exit 1 | ||
fi | ||
- name: Extract Docker metadata | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
flavor: latest=false | ||
tags: ${{ steps.buildargs.outputs.tags }} | ||
images: ${{ steps.buildargs.outputs.images }} | ||
labels: | | ||
org.opencontainers.image.title=Jetpack Monorepo Environment | ||
org.opencontainers.image.description=Environment for building and testing the Jetpack Monorepo. | ||
org.opencontainers.image.documentation=${{ github.server_url }}/${{ github.repository }}/blob/trunk/tools/docker/README.md | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: tools/docker | ||
file: tools/docker/Dockerfile.monorepo | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: linux/arm64,linux/amd64 | ||
build-args: | | ||
PHP_VERSION=${{ steps.buildargs.outputs.php-version }} | ||
COMPOSER_VERSION=${{ steps.buildargs.outputs.composer-version }} | ||
NODE_VERSION=${{ steps.buildargs.outputs.node-version }} | ||
PNPM_VERSION=${{ steps.buildargs.outputs.pnpm-version }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.