forked from WireGuard/wireguard-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Shashank Baghel <[email protected]>
- Loading branch information
Showing
3 changed files
with
31 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
kind: pipeline | ||
name: WireGuardX | ||
|
||
clone: | ||
depth: 1 | ||
|
||
steps: | ||
- name: assembleDebug | ||
image: archlinux:latest | ||
environment: | ||
GITHUB_TOKEN: | ||
from_secret: GITHUB_TOKEN | ||
TG_BOT_API: | ||
from_secret: TG_BOT_API | ||
commands: | ||
- "export TG_BOT_API" | ||
- "export GITHUB_TOKEN" | ||
- bash workaround | ||
- pacman -Sy make git gradle zip unzip wget patch ninja curl jdk8-openjdk jre8-openjdk cmake glibc --noconfirm | ||
- bash dronebuild |
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,7 @@ | ||
#!/bin/bash | ||
|
||
# WORKAROUND for glibc 2.33 and old Docker | ||
# Thanks to https://github.com/lxqt/lxqt-panel/pull/1562 | ||
patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst && \ | ||
curl -LO "https://repo.archlinuxcn.org/x86_64/$patched_glibc" && \ | ||
bsdtar -C / -xvf "$patched_glibc" |