34 lines
1.2 KiB
Bash
Executable file
34 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"/..
|
|
|
|
# the sed in macOS is pretty old so users
|
|
# have to to use gsed which can be installed via homebrew
|
|
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
|
gsed=$(which sed)
|
|
else
|
|
gsed=gsed
|
|
fi
|
|
|
|
update_zig() {
|
|
$gsed -i 's|\(Currently we test using\ \)`.*`|\1'"\`$1\`|" $2
|
|
$gsed -i 's|\(https://ziglang.org/builds/zig-[^/ -]*-[^/ -]*-\)[^/ ]*\(\(\.tar\.xz\)[^/ ]*\)|\1'"$1"'\2|' $2
|
|
$gsed -i 's|\(https://ziglang.org/builds/zig-[^/ -]*-[^/ -]*-\)[^/ ]*\(\(\.zip\)[^/ ]*\)|\1'"$1"'\2|' $2
|
|
$gsed -i 's|\(C:\\zig-[^/ -]*-[^/ -]*-\)[^/ \\]*|\1'"$1|" $2
|
|
}
|
|
|
|
if [ -n "${ZIG_VERSION:-}" ]; then
|
|
version="${ZIG_VERSION:-}"
|
|
|
|
update_zig "$version" README.md
|
|
|
|
sources=$(find . | grep './.github/workflows' | grep -v 'third_party/' | grep -v 'DirectXShaderCompiler' | grep '\.yml')
|
|
echo "$sources" | while read line ; do update_zig "$version" "$line" ; done
|
|
|
|
# If running inside mach-examples/libs/mach, also update the mach-examples repo.
|
|
sources=$(find ../../.github/ | grep '/workflows/' | grep '\.yml')
|
|
echo "$sources" | while read line ; do update_zig "$version" "$line" ; done
|
|
else
|
|
echo "must specify e.g. ZIG_VERSION=0.10.0-dev.2017+a0a2ce92c"
|
|
exit 0
|
|
fi
|