-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from chaoticgd/symboltablefixes3
stabs: Fix type deduplication issues, type naming issues, only run once
- Loading branch information
Showing
5 changed files
with
73 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
# Downloads a release of ccc and puts all the stdump executables in the right | ||
# places. This file is called by the CI workflow for putting out new releases. | ||
|
||
version='v1.1' | ||
|
||
pushd $(dirname -- "$0") | ||
wget https://github.com/chaoticgd/ccc/releases/download/v1.0/ccc_v1.0_linux.zip | ||
wget https://github.com/chaoticgd/ccc/releases/download/v1.0/ccc_v1.0_mac.zip | ||
wget https://github.com/chaoticgd/ccc/releases/download/v1.0/ccc_v1.0_windows.zip | ||
wget "https://github.com/chaoticgd/ccc/releases/download/$(echo $version)/ccc_$(echo $version)_linux.zip" | ||
wget "https://github.com/chaoticgd/ccc/releases/download/$(echo $version)/ccc_$(echo $version)_mac.zip" | ||
wget "https://github.com/chaoticgd/ccc/releases/download/$(echo $version)/ccc_$(echo $version)_windows.zip" | ||
mkdir linux_x86_64 | ||
mkdir mac_x86_64 | ||
mkdir win_x86_64 | ||
unzip -j ccc_v1.0_linux.zip ccc_v1.0_linux/stdump -d linux_x86_64 | ||
unzip -j ccc_v1.0_mac.zip ccc_v1.0_mac/stdump -d mac_x86_64 | ||
unzip -j ccc_v1.0_windows.zip ccc_v1.0_windows/stdump.exe -d win_x86_64 | ||
rm ccc_v1.0_linux.zip | ||
rm ccc_v1.0_mac.zip | ||
rm ccc_v1.0_windows.zip | ||
unzip -j "ccc_$(echo $version)_linux.zip" "ccc_$(echo $version)_linux/stdump" -d linux_x86_64 | ||
unzip -j "ccc_$(echo $version)_mac.zip" "ccc_$(echo $version)_mac/stdump" -d mac_x86_64 | ||
unzip -j "ccc_$(echo $version)_windows.zip" "ccc_$(echo $version)_windows/stdump.exe" -d win_x86_64 | ||
rm "ccc_$(echo $version)_linux.zip" | ||
rm "ccc_$(echo $version)_mac.zip" | ||
rm "ccc_$(echo $version)_windows.zip" | ||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters