Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare a debug build #3644

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading