David Gonzalez Martin ba5f48dec7
Some checks failed
CI / ci (Debug, ubuntu-latest) (push) Failing after 1s
CI / ci (MinSizeRel, ubuntu-latest) (push) Failing after 0s
CI / ci (RelWithDebInfo, ubuntu-latest) (push) Failing after 1s
CI / ci (Release, ubuntu-latest) (push) Failing after 1s
Link LLVM bindings
2025-05-31 06:27:03 -06:00

44 lines
834 B
YAML

name: CI
on:
pull_request:
push:
tags:
- "**"
branches:
- main
schedule:
- cron: "0 0 * * *"
env:
BB_CI: 1
jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
BIRTH_CMAKE_BUILD_TYPE: [ Debug, RelWithDebInfo, Release, MinSizeRel ]
runs-on: ${{ matrix.os }}
steps:
- name: Foo
shell: bash
run: |
set -eu
whoami
echo $PATH
echo $NVM_DIR
- uses: actions/checkout@v4
- name: Build and test (Packaged LLVM)
shell: bash
env:
BB_CI: 1
CMAKE_BUILD_TYPE: ${{matrix.BIRTH_CMAKE_BUILD_TYPE}}
CLANG_PATH: clang-19
CLANGXX_PATH: clang++-19
run: |
./generate.sh
./build.sh
./build/bb test