Skip to content

Commit

Permalink
Prepare a debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Jul 10, 2024
1 parent 4bc3057 commit 59a21e6
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 107 deletions.
4 changes: 2 additions & 2 deletions .github/build-workflows.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Get-ChildItem -Path './pkl-workflows' -Filter *.pkl -File -Name | ForEach-Object {
&pkl eval ./pkl-workflows/$_ -o "./workflows/$($_.Replace('pkl', 'yml'))"
Get-ChildItem -Path "$($PSScriptRoot)/pkl-workflows" -Filter *.pkl -File -Name | ForEach-Object {
&pkl eval "$($PSScriptRoot)/pkl-workflows/$($_)" -o "$($PSScriptRoot)/workflows/$($_.Replace('pkl', 'yml'))"
}
2 changes: 1 addition & 1 deletion .github/pkl-workflows/helpers/Common.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "Lint.pkl"
import "Package.pkl"
import "Test.pkl" as TestJobs

const configuration: String = "Release"
const configuration: String = "Debug"

const linuxArchs: List<String> = List("x86_64", "armhf", "aarch64")
const applePlatforms: List<String> = List("iOS", "tvOS")
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ jobs:
if: ${{ runner.os == 'Windows' }}
uses: microsoft/setup-msbuild@70b70342ae97ca98d5eaad06cafd26d30f9592a9
- name: Build Realm/Realm
run: msbuild Realm/Realm -restore -p:Configuration=Release -p:UseSharedCompilation=false
run: msbuild Realm/Realm -restore -p:Configuration=Debug -p:UseSharedCompilation=false
- name: Build Realm/Realm.PlatformHelpers
run: msbuild Realm/Realm.PlatformHelpers -restore -p:Configuration=Release -p:UseSharedCompilation=false
run: msbuild Realm/Realm.PlatformHelpers -restore -p:Configuration=Debug -p:UseSharedCompilation=false
- name: Build Realm/Realm.UnityUtils
run: msbuild Realm/Realm.UnityUtils -restore -p:Configuration=Release -p:UseSharedCompilation=false
run: msbuild Realm/Realm.UnityUtils -restore -p:Configuration=Debug -p:UseSharedCompilation=false
- name: Build Realm/Realm.UnityWeaver
run: msbuild Realm/Realm.UnityWeaver -restore -p:Configuration=Release -p:UseSharedCompilation=false
run: msbuild Realm/Realm.UnityWeaver -restore -p:Configuration=Debug -p:UseSharedCompilation=false
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@a57c67b89589d2d13d5ac85a9fc4679c7539f94c
Loading

0 comments on commit 59a21e6

Please sign in to comment.