2022-08-09 02:50:24 +03:00
|
|
|
|
name: build
|
2022-11-04 15:59:20 +03:00
|
|
|
|
|
2022-08-09 02:50:24 +03:00
|
|
|
|
on:
|
|
|
|
|
workflow_call:
|
|
|
|
|
inputs:
|
|
|
|
|
projects:
|
|
|
|
|
required: true
|
|
|
|
|
type: string
|
2022-10-26 15:16:43 +03:00
|
|
|
|
upload:
|
|
|
|
|
required: false
|
|
|
|
|
type: boolean
|
|
|
|
|
default: false
|
2022-08-09 02:50:24 +03:00
|
|
|
|
|
2022-11-04 15:59:20 +03:00
|
|
|
|
env:
|
|
|
|
|
TEA_PANTRY_PATH: ${{ github.workspace }}/pantry
|
|
|
|
|
|
2022-08-09 02:50:24 +03:00
|
|
|
|
jobs:
|
|
|
|
|
build:
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
|
|
|
|
include:
|
|
|
|
|
- os: macos-11
|
|
|
|
|
- os: ubuntu-latest
|
2022-09-03 01:41:05 +03:00
|
|
|
|
container:
|
2022-09-29 21:14:58 +03:00
|
|
|
|
image: debian:buster-slim
|
2022-12-09 05:59:38 +03:00
|
|
|
|
options: --memory=24g
|
2022-10-19 06:32:18 +03:00
|
|
|
|
- os: [self-hosted, macOS, ARM64]
|
|
|
|
|
tag: darwin-aarch64
|
|
|
|
|
- os: [self-hosted, linux, ARM64]
|
|
|
|
|
tag: linux-aarch64
|
2022-08-09 02:50:24 +03:00
|
|
|
|
container: ${{ matrix.container }}
|
2022-09-08 23:40:35 +03:00
|
|
|
|
outputs:
|
2022-09-27 22:11:35 +03:00
|
|
|
|
built: ${{ steps.build.outputs.pkgs }}
|
2022-12-07 22:22:29 +03:00
|
|
|
|
relative-paths: ${{ steps.build.outputs.relative-paths }}
|
2022-10-03 20:22:25 +03:00
|
|
|
|
srcs: ${{ steps.build.outputs.srcs }}
|
2022-09-08 23:40:35 +03:00
|
|
|
|
pkgs: ${{ steps.sorted.outputs.pkgs }} ${{ steps.sorted.outputs.pre-install }}
|
2022-08-09 02:50:24 +03:00
|
|
|
|
steps:
|
|
|
|
|
- name: co pantry
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
path: pantry
|
|
|
|
|
|
|
|
|
|
- name: co cli
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
path: cli
|
|
|
|
|
repository: teaxyz/cli
|
|
|
|
|
|
2022-10-28 01:23:32 +03:00
|
|
|
|
- uses: teaxyz/setup@v0
|
|
|
|
|
id: tea
|
|
|
|
|
with:
|
2022-11-04 15:59:20 +03:00
|
|
|
|
# necessary because we currently require a `.git` directory
|
2022-10-28 01:23:32 +03:00
|
|
|
|
srcroot: /opt/tea.xyz/var/pantry
|
|
|
|
|
prefix: /opt
|
|
|
|
|
|
2022-08-09 02:50:24 +03:00
|
|
|
|
- name: HACKS
|
|
|
|
|
run: |
|
|
|
|
|
case ${{ matrix.os }} in
|
|
|
|
|
ubuntu-latest)
|
2022-10-04 03:38:14 +03:00
|
|
|
|
#FIXME our LLVM doesn't provide c/c++ headers for some reason
|
2022-10-03 18:30:12 +03:00
|
|
|
|
apt-get update
|
|
|
|
|
apt-get --yes install libc-dev libstdc++-8-dev libgcc-8-dev
|
2022-08-09 02:50:24 +03:00
|
|
|
|
;;
|
|
|
|
|
macos-11)
|
2022-10-04 03:38:14 +03:00
|
|
|
|
#FIXME we need a clean install of macOS for builds
|
|
|
|
|
#TODO stop using GHA images or chroot or something
|
2022-09-02 00:42:09 +03:00
|
|
|
|
for x in /usr/local/*; do sudo mv $x /tmp; done
|
2022-08-09 02:50:24 +03:00
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
2022-11-04 15:59:20 +03:00
|
|
|
|
ln -s $GITHUB_WORKSPACE/cli /opt/tea.xyz/var/cli
|
2022-08-09 02:50:24 +03:00
|
|
|
|
|
2022-11-11 03:53:26 +03:00
|
|
|
|
# in case this PR contains updates to the scripts
|
|
|
|
|
#TODO only do for PRs
|
|
|
|
|
if test "$GITHUB_REPOSITORY" = "teaxyz/pantry.core"; then
|
|
|
|
|
cp -rv pantry/scripts/* /opt/tea.xyz/var/pantry/scripts
|
|
|
|
|
fi
|
|
|
|
|
|
2022-10-28 01:23:32 +03:00
|
|
|
|
- run: /opt/tea.xyz/var/pantry/scripts/sort.ts ${{ inputs.projects }}
|
2022-08-09 02:50:24 +03:00
|
|
|
|
id: sorted
|
|
|
|
|
|
2022-11-11 03:53:26 +03:00
|
|
|
|
- run: /opt/tea.xyz/var/pantry/scripts/build-deps.ts ${{ steps.sorted.outputs.pkgs }}
|
|
|
|
|
id: deps
|
|
|
|
|
|
|
|
|
|
- run: cli/scripts/install.ts ${{ steps.deps.outputs.pkgs }}
|
|
|
|
|
|
2022-11-04 15:59:20 +03:00
|
|
|
|
# running out of /opt because only pantry.core has these scripts
|
2022-11-11 03:53:26 +03:00
|
|
|
|
- run: /opt/tea.xyz/var/pantry/scripts/build.plumbing.ts ${{ steps.sorted.outputs.pkgs }}
|
2022-08-09 02:50:24 +03:00
|
|
|
|
id: build
|
|
|
|
|
env:
|
2022-11-11 04:42:08 +03:00
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|
2022-08-09 02:50:24 +03:00
|
|
|
|
FORCE_UNSAFE_CONFIGURE: 1 # some configure scripts refuse to run as root
|
|
|
|
|
|
2022-09-29 19:07:07 +03:00
|
|
|
|
# tarring ourselves ∵ GHA-artifacts (ludicrously) lose permissions
|
|
|
|
|
# /ref https://github.com/actions/upload-artifact/issues/38
|
2022-10-17 20:45:32 +03:00
|
|
|
|
- run:
|
|
|
|
|
tar czf $GITHUB_WORKSPACE/artifacts.tgz
|
|
|
|
|
${{ steps.build.outputs.relative-paths }}
|
2022-10-17 22:20:42 +03:00
|
|
|
|
${{ steps.build.outputs.srcs-relative-paths }}
|
2022-09-29 19:07:07 +03:00
|
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
|
2022-09-10 11:09:40 +03:00
|
|
|
|
- name: upload artifacts
|
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
|
with:
|
2022-10-19 06:32:18 +03:00
|
|
|
|
name: ${{ matrix.tag || matrix.os }}
|
2022-09-29 19:07:07 +03:00
|
|
|
|
path: artifacts.tgz
|
2022-09-10 11:09:40 +03:00
|
|
|
|
if-no-files-found: error
|
|
|
|
|
|
2022-09-28 18:14:46 +03:00
|
|
|
|
test:
|
2022-09-10 11:09:40 +03:00
|
|
|
|
needs: [build]
|
2022-09-08 23:40:35 +03:00
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
2022-09-29 19:07:07 +03:00
|
|
|
|
include:
|
|
|
|
|
- os: macos-11
|
|
|
|
|
- os: ubuntu-latest
|
|
|
|
|
- os: ubuntu-latest
|
2022-10-06 19:14:37 +03:00
|
|
|
|
container: ghcr.io/teaxyz/infuser:slim-latest
|
2022-09-29 19:07:07 +03:00
|
|
|
|
- os: ubuntu-latest
|
|
|
|
|
container: debian:buster-slim
|
2022-10-19 06:32:18 +03:00
|
|
|
|
- os: [self-hosted, macOS, ARM64]
|
|
|
|
|
tag: darwin-aarch64
|
|
|
|
|
- os: [self-hosted, linux, ARM64]
|
|
|
|
|
tag: linux-aarch64
|
2022-09-29 19:07:07 +03:00
|
|
|
|
container: ${{ matrix.container }}
|
2022-09-08 23:40:35 +03:00
|
|
|
|
steps:
|
2022-09-29 02:19:56 +03:00
|
|
|
|
- uses: actions/checkout@v3
|
2022-09-08 23:40:35 +03:00
|
|
|
|
with:
|
2022-10-28 01:23:32 +03:00
|
|
|
|
path: tea.xyz/var/cli
|
2022-09-08 23:40:35 +03:00
|
|
|
|
repository: teaxyz/cli
|
|
|
|
|
|
2022-11-04 15:59:20 +03:00
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
path: pantry
|
2022-09-29 22:40:34 +03:00
|
|
|
|
|
2022-09-08 23:40:35 +03:00
|
|
|
|
- uses: teaxyz/setup@v0
|
|
|
|
|
id: tea
|
2022-09-29 02:19:56 +03:00
|
|
|
|
with:
|
2022-10-28 01:23:32 +03:00
|
|
|
|
srcroot: tea.xyz/var/pantry
|
2022-09-29 02:19:56 +03:00
|
|
|
|
prefix: ${{ github.workspace }}
|
2022-10-26 04:55:49 +03:00
|
|
|
|
|
2022-11-04 15:59:20 +03:00
|
|
|
|
- run: |
|
|
|
|
|
apt-get update
|
|
|
|
|
apt-get --yes install libc-dev libstdc++-8-dev libgcc-8-dev
|
2022-12-07 22:33:13 +03:00
|
|
|
|
|
|
|
|
|
# in case this PR contains updates to the scripts
|
|
|
|
|
#TODO only do for PRs
|
|
|
|
|
if test "$GITHUB_REPOSITORY" = "teaxyz/pantry.core"; then
|
|
|
|
|
cp -rv pantry/scripts/* $(tea --prefix)/tea.xyz/var/pantry/scripts
|
|
|
|
|
fi
|
2022-11-04 15:59:20 +03:00
|
|
|
|
if: ${{ matrix.container != '' }}
|
2022-09-08 23:40:35 +03:00
|
|
|
|
|
2022-09-28 18:14:46 +03:00
|
|
|
|
- uses: actions/download-artifact@v3
|
2022-09-08 23:40:35 +03:00
|
|
|
|
with:
|
2022-10-19 06:32:18 +03:00
|
|
|
|
name: ${{ matrix.tag || matrix.os }}
|
2022-09-08 23:40:35 +03:00
|
|
|
|
|
2022-09-29 19:07:07 +03:00
|
|
|
|
- run: tar xzf artifacts.tgz
|
|
|
|
|
|
2022-10-28 01:23:32 +03:00
|
|
|
|
- run: tea.xyz/var/pantry/scripts/test.ts ${{ inputs.projects }}
|
2022-09-08 23:40:35 +03:00
|
|
|
|
|
2022-09-28 18:14:46 +03:00
|
|
|
|
bottle:
|
|
|
|
|
needs: [test, build]
|
2022-11-29 23:55:59 +03:00
|
|
|
|
if: ${{ inputs.upload }}
|
2022-10-19 06:32:18 +03:00
|
|
|
|
runs-on: ${{ matrix.platform.os }}
|
2022-10-28 01:23:32 +03:00
|
|
|
|
defaults:
|
|
|
|
|
run:
|
|
|
|
|
working-directory: tea.xyz/var/pantry
|
2022-09-26 17:56:15 +03:00
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
|
|
|
|
platform:
|
2022-10-19 06:32:18 +03:00
|
|
|
|
- os: macos-11
|
2022-11-30 23:18:05 +03:00
|
|
|
|
name: darwin+x86-64
|
2022-10-19 06:32:18 +03:00
|
|
|
|
- os: ubuntu-latest
|
2022-11-30 23:18:05 +03:00
|
|
|
|
name: linux+x86-64
|
2022-10-19 06:32:18 +03:00
|
|
|
|
- os: [self-hosted, macOS, ARM64]
|
|
|
|
|
tag: darwin-aarch64
|
2022-11-30 23:18:05 +03:00
|
|
|
|
name: darwin+aarch64
|
2022-10-19 06:32:18 +03:00
|
|
|
|
- os: [self-hosted, linux, ARM64]
|
|
|
|
|
tag: linux-aarch64
|
2022-11-30 23:18:05 +03:00
|
|
|
|
name: linux+aarch64
|
2022-09-26 17:56:15 +03:00
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
with:
|
2022-11-04 15:59:20 +03:00
|
|
|
|
path: tea.xyz/var/cli
|
|
|
|
|
repository: teaxyz/cli
|
2022-09-26 17:56:15 +03:00
|
|
|
|
|
2022-09-29 02:19:56 +03:00
|
|
|
|
- uses: actions/checkout@v3
|
2022-09-26 17:56:15 +03:00
|
|
|
|
with:
|
2022-11-04 15:59:20 +03:00
|
|
|
|
path: pantry
|
2022-09-26 17:56:15 +03:00
|
|
|
|
|
|
|
|
|
- uses: teaxyz/setup@v0
|
|
|
|
|
id: tea
|
2022-09-29 02:19:56 +03:00
|
|
|
|
with:
|
2022-10-28 01:23:32 +03:00
|
|
|
|
srcroot: tea.xyz/var/pantry
|
2022-09-29 02:19:56 +03:00
|
|
|
|
prefix: ${{ github.workspace }}
|
2022-09-26 17:56:15 +03:00
|
|
|
|
|
2022-12-07 22:33:13 +03:00
|
|
|
|
- run: |
|
|
|
|
|
# in case this PR contains updates to the scripts
|
|
|
|
|
#TODO only do for PRs
|
|
|
|
|
if test "$GITHUB_REPOSITORY" = "teaxyz/pantry.core"; then
|
|
|
|
|
cp -rv $GITHUB_WORKSPACE/pantry/scripts/* $(tea --prefix)/tea.xyz/var/pantry/scripts
|
|
|
|
|
fi
|
|
|
|
|
|
2022-09-28 18:14:46 +03:00
|
|
|
|
- uses: actions/download-artifact@v3
|
2022-09-26 17:56:15 +03:00
|
|
|
|
with:
|
2022-10-19 06:32:18 +03:00
|
|
|
|
name: ${{ matrix.platform.tag || matrix.platform.os }}
|
2022-09-26 17:56:15 +03:00
|
|
|
|
path: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
|
2022-09-29 19:07:07 +03:00
|
|
|
|
- run: tar xzf artifacts.tgz
|
|
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
|
2022-12-20 21:07:42 +03:00
|
|
|
|
- name: delete `.la` files
|
|
|
|
|
run: find ${{ steps.tea.outputs.prefix }} -name '*.la' -delete
|
|
|
|
|
|
2022-12-07 22:22:29 +03:00
|
|
|
|
# the next three steps bless our code for Apple. It might be the case they should be
|
|
|
|
|
# encapulated separately.
|
|
|
|
|
# FIXME: using an explicit commit in a PR isn't great, but the last release was almost 3 years
|
|
|
|
|
# ago, and we need bugfixes.
|
|
|
|
|
# FIXME: replace this with a tea script based on https://localazy.com/blog/how-to-automatically-sign-macos-apps-using-github-actions
|
|
|
|
|
# github has a doc with similar content, but it's not returning to me atm.
|
|
|
|
|
- uses: apple-actions/import-codesign-certs@d54750db52a4d3eaed0fc107a8bab3958f3f7494
|
|
|
|
|
if: matrix.platform.name == 'darwin+aarch64' || matrix.platform.name == 'darwin+x86-64'
|
|
|
|
|
with:
|
|
|
|
|
p12-file-base64: ${{ secrets.APPLE_CERTIFICATE_P12 }}
|
|
|
|
|
p12-password: ${{ secrets.APPLE_CERTIFICATE_P12_PASSWORD }}
|
|
|
|
|
|
|
|
|
|
# Codesign libs and bins
|
|
|
|
|
- name: Codesign package
|
|
|
|
|
if: matrix.platform.name == 'darwin+aarch64' || matrix.platform.name == 'darwin+x86-64'
|
|
|
|
|
run: |
|
|
|
|
|
for PKG in ${{ needs.build.outputs.relative-paths }}; do
|
|
|
|
|
find /opt/$PKG -name '*.so' -or -name '*.dylib' -print0 | \
|
|
|
|
|
xargs -0 codesign -s "Developer ID Application: Tea Inc. (7WV56FL599)" --force -v --deep --timestamp --preserve-metadata=entitlements -o runtime || true
|
|
|
|
|
codesign -s "Developer ID Application: Tea Inc. (7WV56FL599)" -v --force --deep --timestamp --preserve-metadata=entitlements -o runtime /opt/$PKG/bin/* || true
|
|
|
|
|
done
|
|
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
|
|
|
|
|
# This isn't very informative, but even a no-op is safer than none
|
|
|
|
|
- name: Check codesigning
|
|
|
|
|
if: matrix.platform.name == 'darwin+aarch64' || matrix.platform.name == 'darwin+x86-64'
|
|
|
|
|
run: |
|
|
|
|
|
for PKG in ${{ needs.build.outputs.relative-paths }}; do
|
|
|
|
|
for SIG in `find /opt/$PKG -name '*.so' -or -name '*.dylib'` `find /opt/$PKG/bin -type f`; do
|
|
|
|
|
codesign -vvv --deep --strict "$SIG"
|
|
|
|
|
done
|
|
|
|
|
done
|
|
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Needed for self-hosted runner, since it doesn't destroy itself automatically.
|
|
|
|
|
- name: Delete keychain
|
|
|
|
|
if: always() && matrix.platform.name == 'darwin+aarch64'
|
|
|
|
|
run: security delete-keychain signing_temp.keychain
|
|
|
|
|
|
2022-11-25 06:32:26 +03:00
|
|
|
|
- run: |
|
|
|
|
|
tea +gnupg.org gpg-agent --daemon || true
|
|
|
|
|
echo $GPG_PRIVATE_KEY | \
|
|
|
|
|
base64 -d | \
|
|
|
|
|
tea +gnupg.org gpg --import --batch --yes
|
|
|
|
|
env:
|
|
|
|
|
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
|
|
|
|
2022-10-28 01:23:32 +03:00
|
|
|
|
- run: scripts/bottle.ts ${{ needs.build.outputs.built }}
|
2022-10-20 23:50:19 +03:00
|
|
|
|
id: bottle-xz
|
2022-09-26 17:56:15 +03:00
|
|
|
|
env:
|
2022-10-20 23:50:19 +03:00
|
|
|
|
COMPRESSION: xz
|
2022-11-25 06:32:26 +03:00
|
|
|
|
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
|
2022-12-01 23:59:02 +03:00
|
|
|
|
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
2022-10-20 23:50:19 +03:00
|
|
|
|
|
2022-10-28 01:23:32 +03:00
|
|
|
|
- run: scripts/bottle.ts ${{ needs.build.outputs.built }}
|
2022-10-20 23:50:19 +03:00
|
|
|
|
id: bottle-gz
|
|
|
|
|
env:
|
|
|
|
|
COMPRESSION: gz
|
2022-11-25 06:32:26 +03:00
|
|
|
|
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
|
2022-12-01 23:59:02 +03:00
|
|
|
|
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
2022-09-28 18:14:46 +03:00
|
|
|
|
|
2022-12-07 22:33:13 +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
|
|
|
|
|
|
2022-12-17 17:30:16 +03:00
|
|
|
|
# Don't try to archive "~"
|
|
|
|
|
SRCS=$(echo ${{ needs.build.outputs.srcs }} | sed -e 's/~//g')
|
|
|
|
|
|
2022-12-07 22:33:13 +03:00
|
|
|
|
tar cf $GITHUB_WORKSPACE/artifacts.tar \
|
2022-12-17 17:30:16 +03:00
|
|
|
|
$SRCS \
|
2022-12-07 22:33:13 +03:00
|
|
|
|
${{ steps.bottle-gz.outputs.bottles }} \
|
|
|
|
|
${{ steps.bottle-xz.outputs.bottles }} \
|
|
|
|
|
bottles checksums signatures
|
|
|
|
|
|
|
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
|
|
|
|
|
- name: upload artifacts
|
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
|
with:
|
|
|
|
|
name: ${{ matrix.platform.name }}-bottles
|
|
|
|
|
path: artifacts.tar
|
|
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
|
|
upload:
|
|
|
|
|
needs: [build, bottle]
|
|
|
|
|
if: ${{ inputs.upload }}
|
2022-12-08 16:41:44 +03:00
|
|
|
|
runs-on: ubuntu-latest
|
2022-12-07 22:33:13 +03:00
|
|
|
|
defaults:
|
|
|
|
|
run:
|
|
|
|
|
working-directory: tea.xyz/var/pantry
|
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
|
|
|
|
platform:
|
|
|
|
|
- os: macos-11
|
|
|
|
|
name: darwin+x86-64
|
|
|
|
|
- os: ubuntu-latest
|
|
|
|
|
name: linux+x86-64
|
|
|
|
|
- os: [self-hosted, macOS, ARM64]
|
|
|
|
|
tag: darwin-aarch64
|
|
|
|
|
name: darwin+aarch64
|
|
|
|
|
- os: [self-hosted, linux, ARM64]
|
|
|
|
|
tag: linux-aarch64
|
|
|
|
|
name: linux+aarch64
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
path: tea.xyz/var/cli
|
|
|
|
|
repository: teaxyz/cli
|
|
|
|
|
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
path: pantry
|
|
|
|
|
|
|
|
|
|
- uses: teaxyz/setup@v0
|
|
|
|
|
id: tea
|
|
|
|
|
with:
|
|
|
|
|
srcroot: tea.xyz/var/pantry
|
|
|
|
|
prefix: ${{ github.workspace }}
|
|
|
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
|
|
|
|
with:
|
|
|
|
|
name: ${{ matrix.platform.name }}-bottles
|
|
|
|
|
path: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
|
|
|
|
|
- run: tar xvf artifacts.tar
|
|
|
|
|
working-directory: ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
|
# in case this PR contains updates to the scripts
|
|
|
|
|
#TODO only do for PRs
|
|
|
|
|
if test "$GITHUB_REPOSITORY" = "teaxyz/pantry.core"; then
|
|
|
|
|
cp -rv $GITHUB_WORKSPACE/pantry/scripts/* $(tea --prefix)/tea.xyz/var/pantry/scripts
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
cd ${{ steps.tea.outputs.prefix }}
|
|
|
|
|
for file in bottles checksums signatures; do
|
|
|
|
|
echo "$file=$(cat $file)" >>$GITHUB_ENV
|
|
|
|
|
done
|
|
|
|
|
|
2022-09-26 17:56:15 +03:00
|
|
|
|
- name: upload bottles
|
2022-09-28 18:14:46 +03:00
|
|
|
|
id: upload
|
2022-10-28 01:23:32 +03:00
|
|
|
|
run: scripts/upload.ts
|
2022-10-20 23:50:19 +03:00
|
|
|
|
--pkgs ${{ needs.build.outputs.built }} ${{ needs.build.outputs.built }}
|
|
|
|
|
--srcs ${{ needs.build.outputs.srcs }} ${{ needs.build.outputs.srcs }}
|
2022-12-07 22:33:13 +03:00
|
|
|
|
--bottles ${{ env.bottles }}
|
|
|
|
|
--checksums ${{ env.checksums }}
|
|
|
|
|
--signatures ${{ env.signatures }}
|
2022-09-26 17:56:15 +03:00
|
|
|
|
env:
|
|
|
|
|
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 }}
|
|
|
|
|
|
2022-09-28 18:14:46 +03:00
|
|
|
|
#NOTE ideally we’d invalidate all at once so this is atomic
|
|
|
|
|
# however GHA can’t consolidate outputs from a matrix :/
|
|
|
|
|
- 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 }}
|
2022-09-26 17:56:15 +03:00
|
|
|
|
|
2022-08-30 02:13:00 +03:00
|
|
|
|
notify:
|
2022-08-31 01:02:33 +03:00
|
|
|
|
if: always()
|
2022-12-07 22:33:13 +03:00
|
|
|
|
needs: [test, build, upload]
|
2022-08-30 02:13:00 +03:00
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
steps:
|
2022-09-29 01:59:30 +03:00
|
|
|
|
- uses: martialonline/workflow-status@v3
|
|
|
|
|
id: status
|
2022-08-30 02:13:00 +03:00
|
|
|
|
- uses: rtCamp/action-slack-notify@v2
|
2022-11-18 21:20:47 +03:00
|
|
|
|
if: ${{ env.SLACK_WEBHOOK != '' }}
|
2022-08-26 23:24:38 +03:00
|
|
|
|
env:
|
|
|
|
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
|
|
|
|
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
|
2022-09-29 01:59:30 +03:00
|
|
|
|
SLACK_MESSAGE: build job for ${{ inputs.projects }} ${{ steps.status.outputs.status }}
|
|
|
|
|
SLACK_COLOR: ${{ steps.status.outputs.status }}
|