Fix macOS code signature verification when hl path has spaces (#132) #214
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: CI | |
on: | |
push: | |
# This should disable running the workflow on tags | |
branches: | |
- "**" | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: krdlab/setup-haxe@v1 | |
- name: Install haxelib dependencies | |
run: | | |
haxelib git format https://github.com/HaxeFoundation/format.git | |
haxelib git hscript https://github.com/HaxeFoundation/hscript.git | |
haxelib install vshaxe | |
haxelib install vscode | |
haxelib install vscode-debugadapter | |
- name: Build extension | |
run: make build | |
- name: Build CLI hl | |
run: | | |
cd debugger | |
haxe debugger.hxml | |
cd .. | |
- name: Build standalone adapter.js | |
run: haxe build.hxml | |