Skip to content

Commit

Permalink
[artifact manifest] Generate manifest updates from mirror uploads.
Browse files Browse the repository at this point in the history
Signed-off-by: James Bartlett <[email protected]>
  • Loading branch information
JamesMBartlett committed Jun 20, 2023
1 parent f65306f commit dad9072
Show file tree
Hide file tree
Showing 9 changed files with 260 additions and 24 deletions.
79 changes: 74 additions & 5 deletions .github/workflows/cli_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
needs: get-dev-image
container:
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
env:
ARTIFACT_UPLOAD_LOG: "artifact_uploads.json"
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
Expand Down Expand Up @@ -65,11 +67,17 @@ jobs:
with:
name: linux-artifacts
path: artifacts/
- name: Update Manifest
- name: Update GCS Manifest
env:
ARTIFACT_MANIFEST_BUCKET: "pixie-dev-public"
# Use the old style versions file instead of the new updates for the gcs manifest.
MANIFEST_UPDATES: ""
GOOGLE_APPLICATION_CREDENTIALS: ${{ steps.gcloud-creds.outputs.gcloud-creds }}
run: ./ci/update_artifact_manifest.sh
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: artifact-upload-log
path: ${{ env.ARTIFACT_UPLOAD_LOG }}
sign-release:
name: Sign Release for MacOS
runs-on: macos-latest
Expand Down Expand Up @@ -107,13 +115,18 @@ jobs:
needs: [get-dev-image, sign-release]
container:
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
env:
MANIFEST_UPDATES: "manifest_updates.json"
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
fetch-depth: 0
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
with:
name: macos-artifacts
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
with:
name: artifact-upload-log
- name: Import GPG key
env:
BUILDBOT_GPG_KEY_B64: ${{ secrets.BUILDBOT_GPG_KEY_B64 }}
Expand All @@ -128,6 +141,7 @@ jobs:
REF: ${{ github.event.ref }}
BUILDBOT_GPG_KEY_ID: ${{ secrets.BUILDBOT_GPG_KEY_ID }}
GOOGLE_APPLICATION_CREDENTIALS: ${{ steps.gcloud-creds.outputs.gcloud-creds }}
ARTIFACT_UPLOAD_LOG: "artifact_uploads.json"
shell: bash
run: |
export TAG_NAME="${REF#*/tags/}"
Expand All @@ -138,8 +152,11 @@ jobs:
with:
name: macos-artifacts
path: artifacts/
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: manifest-updates
path: ${{ env.MANIFEST_UPDATES }}
create-github-release:
if: ${{ !contains(github.event.ref, '-') }}
name: Create Release on Github
runs-on: ubuntu-latest
needs: push-signed-artifacts
Expand All @@ -154,16 +171,68 @@ jobs:
env:
REF: ${{ github.event.ref }}
GH_TOKEN: ${{ secrets.BUILDBOT_GH_API_TOKEN }}
OWNER: pixie-io
REPO: pixie
shell: bash
# yamllint disable rule:indentation
run: |
export TAG_NAME="${REF#*/tags/}"
# actions/checkout doesn't get the tag annotation properly.
git fetch origin tag "${TAG_NAME}" -f
export changelog="$(git tag -l --format='%(contents)' "${TAG_NAME}")"
gh release create "${TAG_NAME}" --title "CLI ${TAG_NAME#release/cli/}" \
prerelease=""
if [[ "${REF}" == *"-"* ]]; then
prerelease="--prerelease"
fi
gh release create "${TAG_NAME}" "${prerelease}" \
--title "CLI ${TAG_NAME#release/cli/}" \
--notes $'Pixie CLI Release:\n'"${changelog}"
gh release upload "${TAG_NAME}" linux-artifacts/* macos-artifacts/*
# yamllint enable rule:indentation
update-gh-artifacts-manifest:
runs-on: ubuntu-latest-8-cores
needs: [get-dev-image, create-github-release]
container:
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
concurrency: gh-pages
permissions:
contents: write
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
fetch-depth: 0
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
ref: gh-pages
path: gh-pages
- name: Add pwd to git safe dir
run: |
git config --global --add safe.directory `pwd`
git config --global --add safe.directory "$(pwd)/gh-pages"
- name: Import GPG key
env:
BUILDBOT_GPG_KEY_B64: ${{ secrets.BUILDBOT_GPG_KEY_B64 }}
run: |
echo "${BUILDBOT_GPG_KEY_B64}" | base64 --decode | gpg --no-tty --batch --import
- name: Setup git
shell: bash
env:
BUILDBOT_GPG_KEY_ID: ${{ secrets.BUILDBOT_GPG_KEY_ID }}
run: |
git config --global user.name 'pixie-io-buildbot'
git config --global user.email '[email protected]'
git config --global user.signingkey "${BUILDBOT_GPG_KEY_ID}"
git config --global commit.gpgsign true
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
id: download-artifact
with:
name: manifest-updates
- name: Update gh-pages Manifest
env:
ARTIFACT_MANIFEST_PATH: "gh-pages/artifacts/manifest.json"
MANIFEST_UPDATES: "manifest_updates.json"
run: |
./ci/update_artifact_manifest.sh
cd gh-pages
export ARTIFACT_MANIFEST_PATH="${ARTIFACT_MANIFEST_PATH##gh-pages/}"
git add "${ARTIFACT_MANIFEST_PATH}" "${ARTIFACT_MANIFEST_PATH}.sha256"
git commit -s -m "Update artifact manifest"
git push origin "gh-pages"
70 changes: 65 additions & 5 deletions .github/workflows/operator_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
needs: get-dev-image
container:
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
env:
MANIFEST_UPDATES: "manifest_updates.json"
ARTIFACT_UPLOAD_LOG: "artifact_uploads.json"
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
Expand Down Expand Up @@ -58,11 +61,17 @@ jobs:
mkdir -p "${ARTIFACTS_DIR}"
./ci/save_version_info.sh
./ci/operator_build_release.sh
- name: Update Manifest
- name: Update GCS Manifest
env:
ARTIFACT_MANIFEST_BUCKET: "pixie-dev-public"
# Use the old style versions file instead of the new updates for the gcs manifest.
MANIFEST_UPDATES: ""
GOOGLE_APPLICATION_CREDENTIALS: ${{ steps.gcloud-creds.outputs.gcloud-creds }}
run: ./ci/update_artifact_manifest.sh
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: manifest-updates
path: ${{ env.MANIFEST_UPDATES }}
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: operator-artifacts
Expand All @@ -72,7 +81,6 @@ jobs:
name: index-artifacts
path: index.yaml
create-github-release:
if: ${{ !contains(github.event.ref, '-') }}
name: Create Release on Github
runs-on: ubuntu-latest
needs: build-release
Expand All @@ -87,16 +95,19 @@ jobs:
env:
REF: ${{ github.event.ref }}
GH_TOKEN: ${{ secrets.BUILDBOT_GH_API_TOKEN }}
OWNER: pixie-io
REPO: pixie
shell: bash
# yamllint disable rule:indentation
run: |
export TAG_NAME="${REF#*/tags/}"
# actions/checkout doesn't get the tag annotation properly.
git fetch origin tag "${TAG_NAME}" -f
export changelog="$(git tag -l --format='%(contents)' "${TAG_NAME}")"
gh release create "${TAG_NAME}" --title "Operator ${TAG_NAME#release/operator/}" \
prerelease=""
if [[ "${REF}" == *"-"* ]]; then
prerelease="--prerelease"
fi
gh release create "${TAG_NAME}" "${prerelease}" \
--title "Operator ${TAG_NAME#release/operator/}" \
--notes $'Pixie Operator Release:\n'"${changelog}"
gh release upload "${TAG_NAME}" operator-artifacts/*
create-helm-chart:
Expand Down Expand Up @@ -134,3 +145,52 @@ jobs:
git commit -s -m "Release Helm chart ${VERSION}"
git push origin "gh-pages"
# yamllint enable rule:indentation
update-gh-artifacts-manifest:
runs-on: ubuntu-latest-8-cores
needs: [get-dev-image, create-github-release]
container:
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
concurrency: gh-pages
permissions:
contents: write
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
fetch-depth: 0
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
ref: gh-pages
path: gh-pages
- name: Add pwd to git safe dir
run: |
git config --global --add safe.directory `pwd`
git config --global --add safe.directory "$(pwd)/gh-pages"
- name: Import GPG key
env:
BUILDBOT_GPG_KEY_B64: ${{ secrets.BUILDBOT_GPG_KEY_B64 }}
run: |
echo "${BUILDBOT_GPG_KEY_B64}" | base64 --decode | gpg --no-tty --batch --import
- name: Setup git
shell: bash
env:
BUILDBOT_GPG_KEY_ID: ${{ secrets.BUILDBOT_GPG_KEY_ID }}
run: |
git config --global user.name 'pixie-io-buildbot'
git config --global user.email '[email protected]'
git config --global user.signingkey "${BUILDBOT_GPG_KEY_ID}"
git config --global commit.gpgsign true
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
id: download-artifact
with:
name: manifest-updates
- name: Update gh-pages Manifest
env:
ARTIFACT_MANIFEST_PATH: "gh-pages/artifacts/manifest.json"
MANIFEST_UPDATES: "manifest_updates.json"
run: |
./ci/update_artifact_manifest.sh
cd gh-pages
export ARTIFACT_MANIFEST_PATH="${ARTIFACT_MANIFEST_PATH##gh-pages/}"
git add "${ARTIFACT_MANIFEST_PATH}" "${ARTIFACT_MANIFEST_PATH}.sha256"
git commit -s -m "Update artifact manifest"
git push origin "gh-pages"
70 changes: 65 additions & 5 deletions .github/workflows/vizier_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
needs: get-dev-image
container:
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
env:
MANIFEST_UPDATES: "manifest_updates.json"
ARTIFACT_UPLOAD_LOG: "artifact_uploads.json"
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
Expand Down Expand Up @@ -65,11 +68,17 @@ jobs:
docs="$(mktemp)"
bazel run //src/carnot/docstring:docstring -- --output_json "${docs}"
gsutil cp "${docs}" "${PXL_DOCS_GCS_PATH}"
- name: Update Manifest
- name: Update GCS Manifest
env:
ARTIFACT_MANIFEST_BUCKET: "pixie-dev-public"
# Use the old style versions file instead of the new updates for the gcs manifest.
MANIFEST_UPDATES: ""
GOOGLE_APPLICATION_CREDENTIALS: ${{ steps.gcloud-creds.outputs.gcloud-creds }}
run: ./ci/update_artifact_manifest.sh
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: manifest-updates
path: ${{ env.MANIFEST_UPDATES }}
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: vizier-artifacts
Expand All @@ -79,7 +88,6 @@ jobs:
name: index-artifacts
path: index.yaml
create-github-release:
if: ${{ !contains(github.event.ref, '-') }}
name: Create Release on Github
runs-on: ubuntu-latest
needs: build-release
Expand All @@ -94,16 +102,19 @@ jobs:
env:
REF: ${{ github.event.ref }}
GH_TOKEN: ${{ secrets.BUILDBOT_GH_API_TOKEN }}
OWNER: pixie-io
REPO: pixie
shell: bash
# yamllint disable rule:indentation
run: |
export TAG_NAME="${REF#*/tags/}"
# actions/checkout doesn't get the tag annotation properly.
git fetch origin tag "${TAG_NAME}" -f
export changelog="$(git tag -l --format='%(contents)' "${TAG_NAME}")"
gh release create "${TAG_NAME}" --title "Vizier ${TAG_NAME#release/vizier/}" \
prerelease=""
if [[ "${REF}" == *"-"* ]]; then
prerelease="--prerelease"
fi
gh release create "${TAG_NAME}" "${prerelease}" \
--title "Vizier ${TAG_NAME#release/vizier/}" \
--notes $'Pixie Vizier Release:\n'"${changelog}"
gh release upload "${TAG_NAME}" vizier-artifacts/*
# yamllint enable rule:indentation
Expand Down Expand Up @@ -142,3 +153,52 @@ jobs:
git commit -s -m "Release Helm chart Vizier ${VERSION}"
git push origin "gh-pages"
# yamllint enable rule:indentation
update-gh-artifacts-manifest:
runs-on: ubuntu-latest-8-cores
needs: [get-dev-image, create-github-release]
container:
image: ${{ needs.get-dev-image.outputs.image-with-tag }}
concurrency: gh-pages
permissions:
contents: write
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
fetch-depth: 0
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
ref: gh-pages
path: gh-pages
- name: Add pwd to git safe dir
run: |
git config --global --add safe.directory `pwd`
git config --global --add safe.directory "$(pwd)/gh-pages"
- name: Import GPG key
env:
BUILDBOT_GPG_KEY_B64: ${{ secrets.BUILDBOT_GPG_KEY_B64 }}
run: |
echo "${BUILDBOT_GPG_KEY_B64}" | base64 --decode | gpg --no-tty --batch --import
- name: Setup git
shell: bash
env:
BUILDBOT_GPG_KEY_ID: ${{ secrets.BUILDBOT_GPG_KEY_ID }}
run: |
git config --global user.name 'pixie-io-buildbot'
git config --global user.email '[email protected]'
git config --global user.signingkey "${BUILDBOT_GPG_KEY_ID}"
git config --global commit.gpgsign true
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
id: download-artifact
with:
name: manifest-updates
- name: Update gh-pages Manifest
env:
ARTIFACT_MANIFEST_PATH: "gh-pages/artifacts/manifest.json"
MANIFEST_UPDATES: "manifest_updates.json"
run: |
./ci/update_artifact_manifest.sh
cd gh-pages
export ARTIFACT_MANIFEST_PATH="${ARTIFACT_MANIFEST_PATH##gh-pages/}"
git add "${ARTIFACT_MANIFEST_PATH}" "${ARTIFACT_MANIFEST_PATH}.sha256"
git commit -s -m "Update artifact manifest"
git push origin "gh-pages"
2 changes: 1 addition & 1 deletion ci/artifact_mirrors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# So the first mirror in the list will be pulled from first.
- name: gh-releases
type: gh-releases
url_format: 'https://github.com/pixie-io/pixie/releases/download/release/${component}/v${version}/${artifact_name}'
url_format: 'https://github.com/${gh_repo}/releases/download/release/${component}/v${version}/${artifact_name}'
- name: pixie-oss-gcs
type: gcs
bucket: pixie-dev-public
Expand Down
Loading

0 comments on commit dad9072

Please sign in to comment.