mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
4c630e0437
- Previous android java and jni code updated to work, but with much love still needed to make it work nicely, e.g. handling when the VPN is turned off. - DNS handling refactored to allow android to intercept and handle DNS requests as we can't set the system DNS to use a high port (and apparently Chrome ignores system DNS settings anyway) - add packet router structure to allow separate handling of specific intercepted traffic, e.g. UDP traffic to port 53 gets handled by our DNS handler rather than being naively forwarded as exit traffic. - For now, android lokinet is exit-only and hard-coded to use exit.loki as its exit. The exit will be configurable before release, but allowing to not use exit-only mode is more of a challenge. - some old gitignore remnants which were matching to things we don't want them to (and are no longer relevant) removed - some minor changes to CI configuration
77 lines
2.1 KiB
Bash
Executable File
77 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Script used with Drone CI to upload build artifacts (because specifying all this in
|
|
# .drone.jsonnet is too painful).
|
|
|
|
|
|
|
|
set -o errexit
|
|
|
|
if [ -z "$SSH_KEY" ]; then
|
|
echo -e "\n\n\n\e[31;1mUnable to upload artifact: SSH_KEY not set\e[0m"
|
|
# Just warn but don't fail, so that this doesn't trigger a build failure for untrusted builds
|
|
exit 0
|
|
fi
|
|
|
|
echo "$SSH_KEY" >ssh_key
|
|
|
|
set -o xtrace # Don't start tracing until *after* we write the ssh key
|
|
|
|
chmod 600 ssh_key
|
|
|
|
os="${UPLOAD_OS:-$DRONE_STAGE_OS-$DRONE_STAGE_ARCH}"
|
|
if [ -n "$WINDOWS_BUILD_NAME" ]; then
|
|
os="windows-$WINDOWS_BUILD_NAME"
|
|
fi
|
|
|
|
if [ -n "$DRONE_TAG" ]; then
|
|
# For a tag build use something like `lokinet-linux-amd64-v1.2.3`
|
|
base="lokinet-$os-$DRONE_TAG"
|
|
else
|
|
# Otherwise build a length name from the datetime and commit hash, such as:
|
|
# lokinet-linux-amd64-20200522T212342Z-04d7dcc54
|
|
base="lokinet-$os-$(date --date=@$DRONE_BUILD_CREATED +%Y%m%dT%H%M%SZ)-${DRONE_COMMIT:0:9}"
|
|
fi
|
|
|
|
mkdir -v "$base"
|
|
if [ -e daemon/lokinet.exe ]; then
|
|
cp -av lokinet-*.exe ../lokinet-bootstrap.ps1 "$base"
|
|
# zipit up yo
|
|
archive="$base.zip"
|
|
zip -r "$archive" "$base"
|
|
elif [ -e build/outputs/apk/debug/lokinet-debug.apk ] ; then
|
|
# android af ngl
|
|
cp -av build/outputs/apk/debug/lokinet-debug.apk "$base"
|
|
archive="$base.tar.xz"
|
|
tar cJvf "$archive" "$base"
|
|
else
|
|
cp -av daemon/lokinet daemon/lokinet-vpn ../lokinet-bootstrap "$base"
|
|
# tar dat shiz up yo
|
|
archive="$base.tar.xz"
|
|
tar cJvf "$archive" "$base"
|
|
fi
|
|
|
|
upload_to="oxen.rocks/${DRONE_REPO// /_}/${DRONE_BRANCH// /_}"
|
|
|
|
# sftp doesn't have any equivalent to mkdir -p, so we have to split the above up into a chain of
|
|
# -mkdir a/, -mkdir a/b/, -mkdir a/b/c/, ... commands. The leading `-` allows the command to fail
|
|
# without error.
|
|
upload_dirs=(${upload_to//\// })
|
|
mkdirs=
|
|
dir_tmp=""
|
|
for p in "${upload_dirs[@]}"; do
|
|
dir_tmp="$dir_tmp$p/"
|
|
mkdirs="$mkdirs
|
|
-mkdir $dir_tmp"
|
|
done
|
|
|
|
sftp -i ssh_key -b - -o StrictHostKeyChecking=off drone@oxen.rocks <<SFTP
|
|
$mkdirs
|
|
put $archive $upload_to
|
|
SFTP
|
|
|
|
set +o xtrace
|
|
|
|
echo -e "\n\n\n\n\e[32;1mUploaded to https://${upload_to}/${archive}\e[0m\n\n\n"
|
|
|