68 lines
1.6 KiB
YAML
68 lines
1.6 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "**"
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
BB_CI: 1
|
|
BUILD_DEBUG: 1
|
|
LLVM_VERSION: 20.1.7
|
|
CLANG_PATH: clang-19
|
|
CLANGXX_PATH: clang++-19
|
|
|
|
jobs:
|
|
ci:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-latest ]
|
|
BIRTH_CMAKE_BUILD_TYPE: [ Debug, Release-assertions, Release ]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build and test (Packaged LLVM)
|
|
shell: bash
|
|
env:
|
|
CMAKE_BUILD_TYPE: ${{matrix.BIRTH_CMAKE_BUILD_TYPE}}
|
|
run: |
|
|
set -eux
|
|
ci/reproduce.sh
|
|
release:
|
|
needs: ci
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-latest ]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install
|
|
shell: bash
|
|
env:
|
|
BB_CI: 1
|
|
run: |
|
|
set -eux
|
|
ci/install.sh
|
|
- name: Release (locally)
|
|
if: ${{ (github.ref == 'refs/heads/main') }}
|
|
shell: bash
|
|
env:
|
|
BB_CI: 1
|
|
run: |
|
|
set -eux
|
|
ci/release.sh
|
|
- name: Release (web)
|
|
uses: akkuman/gitea-release-action@v1
|
|
if: ${{ (github.ref == 'refs/heads/main') }}
|
|
env:
|
|
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
|
|
with:
|
|
files: |-
|
|
/home/act_runner/bloat-buster-artifacts/releases/main/compiler_generic_debug
|
|
/home/act_runner/bloat-buster-artifacts/releases/main/compiler_generic
|
|
/home/act_runner/bloat-buster-artifacts/releases/main/compiler_native
|