-
Notifications
You must be signed in to change notification settings - Fork 15
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 #633 from CS-SI/pr/updatemaster
Update master to v22.11.6
- Loading branch information
Showing
100 changed files
with
1,765 additions
and
393 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#! /bin/bash -x | ||
|
||
if [ -z "$1" ]; then | ||
echo "Must specify a version number ..." | ||
exit 1 | ||
fi | ||
|
||
export BRANCH_NAME=develop | ||
docker system prune -a -f | ||
BRANCH_NAME=develop ./create-docker.sh -f | ||
docker system prune -a -f | ||
BRANCH_NAME=develop GOOSX=darwin GOARCHX=arm64 ./create-docker2.sh -f | ||
docker system prune -a -f | ||
BRANCH_NAME=develop GOOSX=linux GOARCHX=arm ./create-docker2.sh -f | ||
docker system prune -a -f | ||
BRANCH_NAME=develop GOOSX=windows GOARCHX=amd64 ./create-docker2.sh -f | ||
docker system prune -a -f | ||
mv ./exported-windows-amd64/safescale ./exported-windows-amd64/safescale.exe | ||
mv ./exported-windows-amd64/safescaled ./exported-windows-amd64/safescaled.exe | ||
tar -czf safescale-$1-linux-amd64.tar.gz -C ./exported . | ||
tar -czf safescale-$1-linux-arm.tar.gz -C ./exported-linux-arm . | ||
tar -czf safescale-$1-darwin-arm64.tar.gz -C ./exported-darwin-arm64 . | ||
tar -czf safescale-$1-windows-amd64.tar.gz -C ./exported-windows-amd64 . |
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
Oops, something went wrong.