'Generic Commit'
Some checks failed
dropshell-build / build (push) Failing after 56s

This commit is contained in:
Your Name 2025-06-01 22:59:22 +12:00
parent 02be7691ac
commit a87eb6151c
8 changed files with 35 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

34
musl/upload.sh Executable file
View File

@ -0,0 +1,34 @@
#!/bin/bash
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
function upload_file() {
local file="$1"
local server="getbin.xyz"
local tag="latest"
local name;
name=$(basename "${file}")
# upload the file to the server
echo "Uploading ${file} to the server"
sos upload "${server}" "${file}" "${name}:${tag}"
}
if ! command -v sos &> /dev/null ; then
echo "sos could not be found"
exit 1
fi
if ! command -v dropshell-tool &> /dev/null ; then
echo "dropshell-tool could not be found"
exit 1
fi
# find all .tgz in this directory
for file in "${SCRIPT_DIR}"/*.tgz; do
# upload the file to the server
echo "Uploading ${file} to the server"
upload_file "${file}"
done

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -304,6 +304,7 @@ function install_musl() {
TOOLCHAIN_LIST=( TOOLCHAIN_LIST=(
"aarch64-linux-musl-cross" "aarch64-linux-musl-cross"
"x86_64-linux-musl-cross" "x86_64-linux-musl-cross"
"x86_64-w64-mingw32-cross"
) )
for TOOLCHAIN in "${TOOLCHAIN_LIST[@]}"; do for TOOLCHAIN in "${TOOLCHAIN_LIST[@]}"; do