Skip to content

Improved debug_lines parsing based on the stmt_list attribute of … #14

Improved debug_lines parsing based on the stmt_list attribute of …

Improved debug_lines parsing based on the stmt_list attribute of … #14

Workflow file for this run

name: Tagged Release
on:
push:
tags:
- "v*.*.*"
permissions:
contents: write
jobs:
release:
runs-on: macos-latest
steps:
- name: 🐍 Python setup
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: ⬇️ Checkout sources
uses: actions/checkout@v3
- name: 🏗️ Setup project files
run: |
mkdir build
cd build
cmake -DTRACY_ENABLE=OFF -DORC_BUILD_EXAMPLES=0 -GXcode ..
- name: 🛠️ Build ORC
run: |
xcodebuild -json -project ./build/orc.xcodeproj -scheme orc_orc -configuration Release -hideShellScriptEnvironment
- name: 🗜️ Create archive
run: |
cd build/Release
tar -zcvf orc-${{github.ref_name}}-${{runner.os}}-${{runner.arch}}.tgz orc
- name: ✍️ Post archive
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files:
build/Release/orc-${{github.ref_name}}-${{runner.os}}-${{runner.arch}}.tgz