Skip to content

Commit

Permalink
Merge pull request Laupetin#57 from Laupetin/fix/macro-expansion-mult…
Browse files Browse the repository at this point in the history
…iple-lines

Fix macro expansion and definition over multiple lines
  • Loading branch information
Laupetin authored Dec 24, 2023
2 parents 3bb9f5b + 4ba33f0 commit 846a9d3
Show file tree
Hide file tree
Showing 5 changed files with 611 additions and 197 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,18 @@ jobs:
- name: Test
working-directory: ${{ github.workspace }}/build/lib/Release_x86/tests
run: |
$combinedExitCode = 0
./ObjCommonTests
$combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE)
./ObjLoadingTests
$combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE)
./ParserTests
$combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE)
./ZoneCodeGeneratorLibTests
$combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE)
./ZoneCommonTests
$combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE)
exit $combinedExitCode
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
Loading

0 comments on commit 846a9d3

Please sign in to comment.