mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-08 11:37:04 +09:00

* Add instructions for using Codespaces * Automate resetting the HEAD to the same commit ID used to build the pre-built container * - Add notes about testing changes. - Add 4-core machines * Revert 4-core change since prebuild doesn't support multiple sku_names.
6 lines
160 B
Bash
Executable file
6 lines
160 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# reset the repo to the commit hash that was used to build the prebuilt Codespace
|
|
git reset --hard $(cat ./artifacts/prebuild.sha)
|