pantry/.github/workflows/build.yml

179 lines
5.3 KiB
YAML
Raw Normal View History

name: build
on:
workflow_call:
inputs:
projects:
required: true
type: string
jobs:
check-core-sizes:
runs-on: ubuntu-latest
outputs:
gha-linux-build-size: ${{ env.GHA_LINUX_BUILD_SIZE }}
steps:
- uses: actions/checkout@v3
with:
repository: teaxyz/pantry.core
- uses: teaxyz/setup@v0
- run: scripts/check-core-sizes.ts ${{ inputs.projects }}
env:
TEA_PANTRY_PATH: ${{ github.workspace }}
build:
runs-on: ${{ matrix.platform.os }}
needs: [check-core-sizes]
strategy:
matrix:
platform:
- os: macos-11
name: darwin+x86-64
- os: ${{ needs.check-core-sizes.outputs.gha-linux-build-size }}
name: linux+x86-64
2022-09-03 01:41:05 +03:00
container:
image: debian:buster-slim
2022-10-19 06:32:18 +03:00
- os: [self-hosted, macOS, ARM64]
name: darwin+aarch64
2022-10-19 06:32:18 +03:00
- os: [self-hosted, linux, ARM64]
name: linux+aarch64
container: ${{ matrix.platform.container }}
steps:
- uses: actions/checkout@v3
2022-10-28 01:23:32 +03:00
- uses: teaxyz/setup@v0
id: tea
with:
prefix: /opt
- name: sanitize macOS runners
if: matrix.platform.os == 'macos-11'
run: sudo mv /usr/local/bin/* /tmp/
- name: configure tea env
run: |
echo "$PWD/scripts:$TEA_PREFIX/tea.xyz/var/pantry/scripts" >> $GITHUB_PATH
echo "TEA_PANTRY_PATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- run: sort.ts ${{ inputs.projects }}
id: sorted
- run: build.ts ${{ steps.sorted.outputs.pkgs }}
id: build
env:
2022-11-11 04:42:08 +03:00
GITHUB_TOKEN: ${{ github.token }}
FORCE_UNSAFE_CONFIGURE: 1 # some configure scripts refuse to run as root
- name: delete `.la` files
run: find . -name '*.la' -delete
working-directory: ${{ steps.tea.outputs.prefix }}
# cache data we'll need in the bottling job
- name: assemble artifact metadata
run: |
echo ${{ steps.build.outputs.pkgs }} >built
echo ${{ steps.build.outputs.relative-paths }} >relative-paths
echo ${{ steps.build.outputs.srcs }} >srcs
working-directory: ${{ steps.tea.outputs.prefix }}
2022-09-29 19:07:07 +03:00
# tarring ourselves ∵ GHA-artifacts (ludicrously) lose permissions
# /ref https://github.com/actions/upload-artifact/issues/38
- name: create artifacts.tgz
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 }}
built relative-paths srcs
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:
name: ${{ matrix.platform.name }}
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]
runs-on: ${{ matrix.platform.os }}
2022-09-08 23:40:35 +03:00
strategy:
matrix:
platform:
2022-09-29 19:07:07 +03:00
- os: macos-11
name: darwin+x86-64
2022-09-29 19:07:07 +03:00
- os: ubuntu-latest
name: linux+x86-64
2022-09-29 19:07:07 +03:00
- os: ubuntu-latest
name: linux+x86-64
container: ghcr.io/teaxyz/infuser:latest
2022-09-29 19:07:07 +03:00
- os: ubuntu-latest
name: linux+x86-64
2022-09-29 19:07:07 +03:00
container: debian:buster-slim
2022-10-19 06:32:18 +03:00
- os: [self-hosted, macOS, ARM64]
name: darwin+aarch64
2022-10-19 06:32:18 +03:00
- os: [self-hosted, linux, ARM64]
name: linux+aarch64
outputs:
2023-01-12 01:00:05 +03:00
HAS_SECRETS: ${{ env.HAS_SECRETS }}
container: ${{ matrix.platform.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
- uses: teaxyz/setup@v0
2022-10-26 04:55:49 +03:00
- name: configure scripts PATH
run: echo "$PWD/scripts:$TEA_PREFIX/tea.xyz/var/pantry/scripts" >> $GITHUB_PATH
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:
name: ${{ matrix.platform.name }}
2022-09-08 23:40:35 +03:00
- name: extract bottles
run: tar xzf artifacts.tgz -C $TEA_PREFIX
2022-09-29 19:07:07 +03:00
- run: test.ts ${{ inputs.projects }}
env:
TEA_PANTRY_PATH: ${{ github.workspace }}
2022-09-08 23:40:35 +03:00
- name: post
run:
2023-01-12 01:00:05 +03:00
echo "HAS_SECRETS=$HAS_SECRETS" >>$GITHUB_ENV
env:
HAS_SECRETS: ${{ secrets.AWS_S3_CACHE != null }}
stage:
needs: [test]
# this only works for PRs from our team to our repo (security! :( )
2023-01-12 01:00:05 +03:00
if: startsWith(github.ref, 'refs/pull/') && startsWith(github.repository, 'teaxyz/pantry.') && needs.test.outputs.HAS_SECRETS == 'true'
runs-on: ubuntu-latest
2022-09-26 17:56:15 +03:00
strategy:
matrix:
platform:
2022-10-19 06:32:18 +03:00
- os: macos-11
name: darwin+x86-64
2022-10-19 06:32:18 +03:00
- os: ubuntu-latest
name: linux+x86-64
2022-10-19 06:32:18 +03:00
- os: [self-hosted, macOS, ARM64]
name: darwin+aarch64
2022-10-19 06:32:18 +03:00
- os: [self-hosted, linux, ARM64]
name: linux+aarch64
2022-09-26 17:56:15 +03:00
steps:
- uses: actions/checkout@v3
- uses: teaxyz/setup@v0
- name: configure scripts PATH
run: echo "$PWD/scripts:$TEA_PREFIX/tea.xyz/var/pantry/scripts" >> $GITHUB_PATH
2022-09-28 18:14:46 +03:00
- uses: actions/download-artifact@v3
2022-09-26 17:56:15 +03:00
with:
name: ${{ matrix.platform.name }}
- run: cache-artifacts.ts
${{github.repository}}
${{github.ref}}
${{matrix.platform.name}}
artifacts.tgz
2022-09-28 18:14:46 +03:00
env:
AWS_S3_CACHE: ${{ secrets.AWS_S3_CACHE }}
2022-09-28 18:14:46 +03:00
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}