Fix BSScript::Object in v1.15.222 by reimplementing previously inlined member functions #6
Workflow file for this run
This file contains hidden or 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: build | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - ".github/workflows/build.yml" | |
| - "include/**" | |
| - "src/**" | |
| - "xmake.lua" | |
| - "xmake-rules.lua" | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| xmake: | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| mode: | |
| - debug | |
| - release | |
| toolchain: | |
| - msvc | |
| - clang-cl | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: setup | |
| uses: xmake-io/github-action-setup-xmake@v1 | |
| with: | |
| xmake-version: "latest" | |
| - name: config | |
| run: xmake config -y --mode=${{ matrix.mode }} --toolchain=${{ matrix.toolchain }} | |
| - name: build | |
| run: xmake build -y -vD |