David Gonzalez Martin ca4aed8f5d
Some checks failed
CI / ci (Debug, ubuntu-latest) (push) Failing after 1s
CI / ci (ReleaseFast, ubuntu-latest) (push) Failing after 1s
CI / ci (ReleaseSafe, ubuntu-latest) (push) Failing after 1s
CI / ci (ReleaseSmall, ubuntu-latest) (push) Failing after 1s
Update CI file
2025-04-05 11:12:06 +02:00

33 lines
658 B
YAML

name: CI
on:
pull_request:
push:
tags:
- "**"
branches:
- main
- zig
schedule:
- cron: "0 0 * * *"
env:
BB_CI: 1
jobs:
ci:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
BIRTH_ZIG_BUILD_TYPE: [ Debug, ReleaseSafe, ReleaseFast, ReleaseSmall ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build and test (Packaged LLVM)
run: |
echo $USER
echo $PATH
~/zig-x86_64-linux-0.14.0/zig build test -Doptimize=${{matrix.BIRTH_ZIG_BUILD_TYPE}} -Dsystem_llvm=false
ldd zig-out/bin/bloat-buster