2022-12-21 00:54:26 +03:00
|
|
|
name: bottle
|
|
|
|
|
2022-12-21 02:29:41 +03:00
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
new-version:
|
|
|
|
type: boolean
|
|
|
|
required: false
|
|
|
|
default: false
|
2023-02-03 01:13:38 +03:00
|
|
|
platform:
|
|
|
|
required: true
|
|
|
|
type: string
|
2023-02-07 01:25:37 +03:00
|
|
|
outputs:
|
|
|
|
pr:
|
|
|
|
description: 'The PR number'
|
|
|
|
value: ${{ jobs.bottle.outputs.pr }}
|
2022-12-21 00:54:26 +03:00
|
|
|
|
|
|
|
jobs:
|
2023-02-03 01:13:38 +03:00
|
|
|
get-platform:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
2023-02-05 02:49:21 +03:00
|
|
|
os: ${{ steps.platform.outputs.os }}
|
|
|
|
cache-set: ${{ steps.platform.outputs.cache-set }}
|
2023-02-03 01:13:38 +03:00
|
|
|
steps:
|
2023-03-11 05:14:21 +03:00
|
|
|
- uses: teaxyz/brewkit/actions/get-platform@v0
|
2023-02-03 01:13:38 +03:00
|
|
|
id: platform
|
2023-02-24 23:50:10 +03:00
|
|
|
with:
|
|
|
|
platform: ${{ inputs.platform }}
|
2023-02-03 01:13:38 +03:00
|
|
|
|
2022-12-21 00:54:26 +03:00
|
|
|
bottle:
|
2023-02-03 01:13:38 +03:00
|
|
|
needs: [get-platform]
|
|
|
|
runs-on: ${{ fromJson(needs.get-platform.outputs.os) }}
|
2022-12-21 00:54:26 +03:00
|
|
|
outputs:
|
|
|
|
srcs: ${{ env.srcs }}
|
|
|
|
built: ${{ env.built }}
|
2023-01-04 02:18:49 +03:00
|
|
|
pr: ${{ env.PR }}
|
2022-12-21 00:54:26 +03:00
|
|
|
steps:
|
2023-03-11 05:14:21 +03:00
|
|
|
- uses: teaxyz/brewkit/actions/setup-brewkit@v0
|
2023-02-25 11:05:09 +03:00
|
|
|
id: tea
|
2022-12-21 00:54:26 +03:00
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
2022-12-21 02:29:41 +03:00
|
|
|
if: ${{ inputs.new-version }}
|
2022-12-21 00:54:26 +03:00
|
|
|
with:
|
2023-02-03 01:13:38 +03:00
|
|
|
name: ${{ inputs.platform }}
|
2022-12-21 00:54:26 +03:00
|
|
|
|
2023-03-11 05:14:21 +03:00
|
|
|
- uses: teaxyz/brewkit/actions/fetch-pr-artifacts@v0
|
2022-12-21 02:29:41 +03:00
|
|
|
if: ${{ !inputs.new-version }}
|
2023-02-24 23:50:10 +03:00
|
|
|
with:
|
2023-02-25 11:54:32 +03:00
|
|
|
platform: ${{ inputs.platform }}
|
2023-02-24 23:50:10 +03:00
|
|
|
token: ${{ github.token }}
|
2023-02-25 11:54:32 +03:00
|
|
|
AWS_S3_BUCKET: ${{ secrets.AWS_S3_CACHE }}
|
2022-12-21 00:54:26 +03:00
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
2023-03-05 06:54:07 +03:00
|
|
|
- name: clean destination
|
|
|
|
# Note: needed when changing a directory to a symlink, for example in
|
2023-03-15 15:14:20 +03:00
|
|
|
# https://github.com/teaxyz/pantry/pull/435
|
2023-03-05 06:54:07 +03:00
|
|
|
run: |
|
|
|
|
tar tzf $GITHUB_WORKSPACE/artifacts.tgz | \
|
|
|
|
awk '{ print length, $0 }' | \
|
|
|
|
sort -n -s -r | \
|
|
|
|
cut -d" " -f2- | \
|
|
|
|
xargs rm -rf
|
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
2023-02-25 11:05:09 +03:00
|
|
|
- run: tar xzvf $GITHUB_WORKSPACE/artifacts.tgz
|
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
2022-12-21 00:54:26 +03:00
|
|
|
|
|
|
|
- run: |
|
2023-02-22 02:23:47 +03:00
|
|
|
for file in built srcs; do
|
2022-12-21 00:54:26 +03:00
|
|
|
echo "$file=$(cat $file)" >>$GITHUB_ENV
|
|
|
|
done
|
2023-02-25 11:05:09 +03:00
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
2022-12-21 00:54:26 +03:00
|
|
|
|
|
|
|
- run: |
|
2023-02-25 11:05:09 +03:00
|
|
|
tea +gnupg.org gpg-agent --daemon || true
|
2022-12-21 00:54:26 +03:00
|
|
|
echo $GPG_PRIVATE_KEY | \
|
|
|
|
base64 -d | \
|
2023-02-25 11:05:09 +03:00
|
|
|
tea +gnupg.org gpg --import --batch --yes
|
2022-12-21 00:54:26 +03:00
|
|
|
env:
|
|
|
|
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
|
|
|
2023-03-11 05:14:21 +03:00
|
|
|
- uses: teaxyz/brewkit/actions/bottle@v0
|
2022-12-21 00:54:26 +03:00
|
|
|
id: bottle-xz
|
2023-02-24 23:50:10 +03:00
|
|
|
with:
|
|
|
|
built: ${{ env.built }}
|
2023-02-25 11:05:09 +03:00
|
|
|
compression: xz
|
2023-02-24 23:50:10 +03:00
|
|
|
gpg-key-id: ${{ secrets.GPG_KEY_ID }}
|
2023-03-05 05:11:59 +03:00
|
|
|
gpg-key-passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
2022-12-21 00:54:26 +03:00
|
|
|
|
2023-03-11 05:14:21 +03:00
|
|
|
- uses: teaxyz/brewkit/actions/bottle@v0
|
2022-12-21 00:54:26 +03:00
|
|
|
id: bottle-gz
|
2023-02-24 23:50:10 +03:00
|
|
|
with:
|
|
|
|
built: ${{ env.built }}
|
2023-02-25 11:05:09 +03:00
|
|
|
compression: gz
|
2023-02-24 23:50:10 +03:00
|
|
|
gpg-key-id: ${{ secrets.GPG_KEY_ID }}
|
2023-03-05 05:11:59 +03:00
|
|
|
gpg-key-passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
2022-12-21 00:54:26 +03:00
|
|
|
|
|
|
|
- run: |
|
|
|
|
echo ${{ steps.bottle-gz.outputs.bottles }} ${{ steps.bottle-xz.outputs.bottles }} >bottles
|
|
|
|
echo ${{ steps.bottle-gz.outputs.checksums }} ${{ steps.bottle-xz.outputs.checksums }} >checksums
|
|
|
|
echo ${{ steps.bottle-gz.outputs.signatures }} ${{ steps.bottle-xz.outputs.signatures }} >signatures
|
|
|
|
|
2023-01-05 04:44:23 +03:00
|
|
|
SRCS=$(echo $srcs | tr -d '~')
|
|
|
|
|
2023-02-25 11:05:09 +03:00
|
|
|
tar cf $GITHUB_WORKSPACE/artifacts.tar \
|
2023-01-05 04:44:23 +03:00
|
|
|
$SRCS \
|
2022-12-21 00:54:26 +03:00
|
|
|
${{ steps.bottle-gz.outputs.bottles }} \
|
|
|
|
${{ steps.bottle-xz.outputs.bottles }} \
|
|
|
|
bottles checksums signatures
|
2023-02-25 11:05:09 +03:00
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
2022-12-21 00:54:26 +03:00
|
|
|
|
|
|
|
- name: upload artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-02-03 01:13:38 +03:00
|
|
|
name: ${{ inputs.platform }}-bottles
|
2022-12-21 00:54:26 +03:00
|
|
|
path: artifacts.tar
|
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
upload:
|
|
|
|
needs: [bottle]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-03-11 05:14:21 +03:00
|
|
|
- uses: teaxyz/brewkit/actions/setup-brewkit@v0
|
2023-02-25 11:05:09 +03:00
|
|
|
with:
|
|
|
|
prefix: ${{ github.workspace }}
|
|
|
|
|
2022-12-21 00:54:26 +03:00
|
|
|
- uses: actions/download-artifact@v3
|
|
|
|
with:
|
2023-02-03 01:13:38 +03:00
|
|
|
name: ${{ inputs.platform }}-bottles
|
2022-12-21 00:54:26 +03:00
|
|
|
|
|
|
|
- run: |
|
2023-02-11 17:59:00 +03:00
|
|
|
tar xvf artifacts.tar
|
2022-12-21 00:54:26 +03:00
|
|
|
|
|
|
|
for file in bottles checksums signatures; do
|
|
|
|
echo "$file=$(cat $file)" >>$GITHUB_ENV
|
|
|
|
done
|
|
|
|
|
2023-03-11 05:14:21 +03:00
|
|
|
- uses: teaxyz/brewkit/actions/upload@v0
|
2023-02-25 11:05:09 +03:00
|
|
|
id: upload
|
2023-02-24 23:50:10 +03:00
|
|
|
with:
|
|
|
|
pkgs: ${{ needs.bottle.outputs.built }} ${{ needs.bottle.outputs.built }}
|
|
|
|
srcs: ${{ needs.bottle.outputs.srcs }} ${{ needs.bottle.outputs.srcs }}
|
|
|
|
bottles: ${{ env.bottles }}
|
|
|
|
checksums: ${{ env.checksums }}
|
|
|
|
signatures: ${{ env.signatures }}
|
2022-12-21 00:54:26 +03:00
|
|
|
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
|
|
|
- uses: chetan/invalidate-cloudfront-action@v2
|
|
|
|
env:
|
|
|
|
PATHS: ${{ steps.upload.outputs.cf-invalidation-paths }}
|
|
|
|
DISTRIBUTION: ${{ secrets.AWS_CF_DISTRIBUTION_ID }}
|
|
|
|
AWS_REGION: us-east-1
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
2023-02-03 01:13:38 +03:00
|
|
|
complain:
|
|
|
|
needs: [upload]
|
2023-02-03 04:07:32 +03:00
|
|
|
if: inputs.new-version == 'true' && failure()
|
|
|
|
uses: ./.github/workflows/complain.yml
|
|
|
|
with:
|
|
|
|
projects: ${{ inputs.projects }}
|
|
|
|
platform: ${{ inputs.platform }}
|
|
|
|
secrets: inherit
|