2022-08-17 03:35:49 +03:00
|
|
|
|
name: cd
|
2023-02-11 17:59:00 +03:00
|
|
|
|
|
2022-08-17 03:35:49 +03:00
|
|
|
|
on:
|
|
|
|
|
push:
|
2023-02-11 17:59:00 +03:00
|
|
|
|
branches: [main]
|
2022-08-17 03:35:49 +03:00
|
|
|
|
|
|
|
|
|
jobs:
|
2023-02-11 17:59:00 +03:00
|
|
|
|
cd: # job is named poorly, all I can tell you about it is: it’s *not* CD
|
2022-08-17 03:35:49 +03:00
|
|
|
|
runs-on: ubuntu-latest
|
2023-01-06 03:05:18 +03:00
|
|
|
|
outputs:
|
2023-01-12 01:00:05 +03:00
|
|
|
|
HAS_ARTIFACTS: ${{ env.HAS_ARTIFACTS }}
|
2022-08-17 03:35:49 +03:00
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v3
|
2023-02-11 15:29:19 +03:00
|
|
|
|
- uses: actions/cache@v3
|
2023-02-05 02:49:21 +03:00
|
|
|
|
with:
|
|
|
|
|
path: $HOME/.cache/deno
|
2023-02-05 03:10:30 +03:00
|
|
|
|
key: ${{ runner.os }}-deno-cd-${{ hashFiles('deno.jsonc')}}
|
2023-01-12 01:00:05 +03:00
|
|
|
|
- uses: teaxyz/setup@v0
|
2023-02-11 17:59:00 +03:00
|
|
|
|
- run: scripts/map-projects-to-githubs.ts
|
2023-01-13 02:27:46 +03:00
|
|
|
|
env:
|
|
|
|
|
WATCHER_URL: ${{ secrets.WATCHER_URL }}
|
|
|
|
|
TEA_API_TOKEN: ${{ secrets.TEA_API_TOKEN }}
|
2023-02-11 17:59:00 +03:00
|
|
|
|
- run: scripts/has-artifacts.ts ${{ github.repository }} ${{ github.sha }} >>$GITHUB_ENV
|
2023-01-12 01:00:05 +03:00
|
|
|
|
env:
|
|
|
|
|
GITHUB_TOKEN: ${{github.token}}
|
|
|
|
|
AWS_S3_CACHE: ${{ secrets.AWS_S3_CACHE }}
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
|
2023-01-06 02:31:35 +03:00
|
|
|
|
bottle-pr:
|
2023-02-03 01:13:38 +03:00
|
|
|
|
strategy:
|
2023-02-03 04:07:32 +03:00
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
platform:
|
|
|
|
|
- darwin+x86-64
|
|
|
|
|
- linux+x86-64
|
|
|
|
|
- darwin+aarch64
|
|
|
|
|
- linux+aarch64
|
2023-01-06 03:05:18 +03:00
|
|
|
|
needs: [cd]
|
2023-01-12 01:00:05 +03:00
|
|
|
|
if: ${{ needs.cd.outputs.HAS_ARTIFACTS == 'true' }}
|
2022-12-21 00:54:26 +03:00
|
|
|
|
uses: ./.github/workflows/bottle.yml
|
2023-02-03 01:13:38 +03:00
|
|
|
|
with:
|
|
|
|
|
platform: ${{ matrix.platform }}
|
2022-10-26 15:16:43 +03:00
|
|
|
|
secrets: inherit
|
2023-02-11 17:59:00 +03:00
|
|
|
|
|
2023-02-07 01:25:37 +03:00
|
|
|
|
cleanup:
|
|
|
|
|
needs: [bottle-pr]
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
if: ${{ needs.cd.outputs.HAS_ARTIFACTS == 'true' }}
|
|
|
|
|
env:
|
|
|
|
|
PR: ${{ needs.bottle.outputs.pr }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Configure AWS Credentials
|
|
|
|
|
uses: aws-actions/configure-aws-credentials@v1
|
|
|
|
|
with:
|
|
|
|
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
aws-region: us-east-1
|
|
|
|
|
- run: |
|
|
|
|
|
REPO=$(echo ${{github.repository}} | sed -e 's_teaxyz/__')
|
|
|
|
|
|
|
|
|
|
if test -z "$PR"; then
|
|
|
|
|
echo "no PR to clean up"
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
aws s3 rm --recursive s3://$AWS_S3_CACHE/pull-request/$REPO/$PR
|
|
|
|
|
env:
|
|
|
|
|
AWS_S3_CACHE: ${{ secrets.AWS_S3_CACHE }}
|
|
|
|
|
PR: ${{ needs.bottle.outputs.pr }}
|
2023-02-11 17:59:00 +03:00
|
|
|
|
|
2023-01-06 02:31:35 +03:00
|
|
|
|
bottle-standalone:
|
|
|
|
|
runs-on: ubuntu-latest
|
2023-01-06 03:05:18 +03:00
|
|
|
|
needs: [cd]
|
2023-01-12 01:00:05 +03:00
|
|
|
|
if: ${{ needs.cd.outputs.HAS_ARTIFACTS == 'false' }}
|
2023-01-06 02:31:35 +03:00
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
- uses: technote-space/get-diff-action@v6
|
2023-02-11 17:59:00 +03:00
|
|
|
|
id: get-diff
|
2023-01-06 02:31:35 +03:00
|
|
|
|
with:
|
|
|
|
|
PATTERNS: projects/**/package.yml
|
2023-02-11 17:59:00 +03:00
|
|
|
|
- id: diff
|
|
|
|
|
run: |
|
2023-02-14 23:15:22 +03:00
|
|
|
|
for x in ${{ steps.get-diff.outputs.diff }}; do
|
|
|
|
|
y=$(echo $x | sed 's#projects/\(.*\)/package.yml#\1#')
|
|
|
|
|
RESULT="$RESULT $y"
|
|
|
|
|
done
|
2023-02-11 17:59:00 +03:00
|
|
|
|
echo "diff=$RESULT" >> $GITHUB_OUTPUT
|
2023-01-06 02:31:35 +03:00
|
|
|
|
- run: gh workflow run new-version.yml -R teaxyz/pantry.core -f "projects=$PROJECTS"
|
2023-01-06 02:46:42 +03:00
|
|
|
|
if: ${{ steps.diff.outputs.diff != '' }}
|
2023-01-06 02:31:35 +03:00
|
|
|
|
env:
|
|
|
|
|
GITHUB_TOKEN: ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}
|
2023-01-06 02:36:34 +03:00
|
|
|
|
PROJECTS: ${{ steps.diff.outputs.diff }}
|