Skip to content

Commit

Permalink
make release tags required to help prevent clobbering old builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Sep 7, 2024
1 parent 8eb189b commit 9827f2d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
github_tag:
description: "Tag to upload the release to."
type: string
required: false
required: true

name: Linux Clang

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
github_tag:
description: "Tag to upload the release to."
type: string
required: false
required: true

name: macOS Clang

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-sysroot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
github_tag:
description: "Tag to upload the release to."
type: string
required: false
required: true

name: macOS SDK Sysroot

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
github_tag:
description: "Tag to upload the release to."
type: string
required: false
required: true

env:
XZ_OPT: "-T0"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sysroot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
github_tag:
description: "Tag to upload the release to."
type: string
required: false
required: true

name: Linux Sysroot

Expand Down
1 change: 1 addition & 0 deletions clang/clang_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ cmake -G Ninja -S llvm -B build \
-DLLVM_INCLUDE_EXAMPLES=OFF \
-DLLVM_INCLUDE_BENCHMARKS=OFF \
-DLLVM_INCLUDE_DOCS=OFF \
-DLIBUNWIND_INSTALL_HEADERS=ON \
-DTerminfo_LIBRARIES=/usr/lib/$libs_dir/libtinfo.a \
-DZLIB_LIBRARY=/usr/lib/$libs_dir/libz.a \
-Dzstd_LIBRARY=/usr/lib/$libs_dir/libzstd.a
Expand Down

0 comments on commit 9827f2d

Please sign in to comment.