98d5be7aaa
* Add devcontainer configurations for source build
7 lines
No EOL
383 B
Bash
Executable file
7 lines
No EOL
383 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Always return exit code 0 so that we can use the codespaces prebuild to diagnose build errors.
|
|
./build.sh /p:ArcadeBuildTarball=true /p:TarballDir=$(realpath ..)/dotnet-source/ /p:PreserveTarballGitFolders=true || true
|
|
|
|
# Save the commit hash of the currently built repo, so developers know which version was built
|
|
git rev-parse HEAD > ./artifacts/prebuild.sha |