Improved debug_lines
parsing based on the stmt_list
attribute of …
#15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |