mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-09 21:24:14 +00:00
8831269523
Add LLVM-16 to the Nix builds and CI matrix. Also add the option to explicitly select an LLVM version so the CircleCI build can still work as before. We should support at least LLVM-17 currently, but there appears to be a significant performance regression in compiling the generated code for large variants that I'm going to debug separately. The long term goal is to support and test all versions 15 and up. Test plan: - CI
21 lines
369 B
YAML
21 lines
369 B
YAML
name: 'Test Report'
|
|
on:
|
|
workflow_run:
|
|
workflows: ['CI']
|
|
types:
|
|
- completed
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
checks: write
|
|
jobs:
|
|
report:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dorny/test-reporter@v1
|
|
with:
|
|
artifact: test-results-16
|
|
name: CTest Tests
|
|
path: results.xml
|
|
reporter: jest-junit
|