Skip to content

codegen: Fix segfault of CodegenLLVM::generateProbe() #1

codegen: Fix segfault of CodegenLLVM::generateProbe()

codegen: Fix segfault of CodegenLLVM::generateProbe() #1

Workflow file for this run

# This workflow builds and uploads the bpftrace appimage as a build artifact.
#
# This is useful for users who want to download the latest and greatest bpftrace
# binary without going through a local build.
name: Binary
on:
push:
branches:
- master
jobs:
build-and-upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v11
- uses: DeterminateSystems/magic-nix-cache-action@v6
- name: Build appimage
run: |
nix build .#appimage
cp ./result bpftrace
- name: Upload appimage
uses: actions/upload-artifact@v3
with:
name: bpftrace
path: ./bpftrace