-
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
199 changed files
with
10,153 additions
and
7,203 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,62 @@ | ||
FROM ubuntu:18.04 | ||
|
||
ARG USERNAME=vscode | ||
ARG USER_UID=1000 | ||
ARG USER_GID=$USER_UID | ||
|
||
ENV RUSTUP_HOME=/usr/local/rustup \ | ||
CARGO_HOME=/usr/local/cargo \ | ||
PATH=/usr/local/cargo/bin:$PATH \ | ||
RUST_VERSION=1.75.0 | ||
|
||
RUN set -eux; \ | ||
apt-get update; \ | ||
apt-get install -y --no-install-recommends \ | ||
sudo \ | ||
ca-certificates \ | ||
curl \ | ||
gnupg \ | ||
git \ | ||
less \ | ||
software-properties-common \ | ||
# Tauri dependencies | ||
libwebkit2gtk-4.0-dev build-essential wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev; \ | ||
# Install openconnect | ||
add-apt-repository ppa:yuezk/globalprotect-openconnect; \ | ||
apt-get update; \ | ||
apt-get install -y openconnect libopenconnect-dev; \ | ||
# Create a non-root user | ||
groupadd --gid $USER_GID $USERNAME; \ | ||
useradd --uid $USER_UID --gid $USER_GID -m $USERNAME; \ | ||
echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME; \ | ||
chmod 0440 /etc/sudoers.d/$USERNAME; \ | ||
# Install Node.js | ||
mkdir -p /etc/apt/keyrings; \ | ||
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg; \ | ||
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list; \ | ||
apt-get update; \ | ||
apt-get install -y nodejs; \ | ||
corepack enable; \ | ||
# Install diff-so-fancy | ||
npm install -g diff-so-fancy; \ | ||
# Install Rust | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $RUST_VERSION; \ | ||
chown -R $USERNAME:$USERNAME $RUSTUP_HOME $CARGO_HOME; \ | ||
rustup --version; \ | ||
cargo --version; \ | ||
rustc --version | ||
|
||
USER $USERNAME | ||
|
||
# Install Oh My Zsh | ||
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.5/zsh-in-docker.sh)" -- \ | ||
-t https://github.com/denysdovhan/spaceship-prompt \ | ||
-a 'SPACESHIP_PROMPT_ADD_NEWLINE="false"' \ | ||
-a 'SPACESHIP_PROMPT_SEPARATE_LINE="false"' \ | ||
-p git \ | ||
-p https://github.com/zsh-users/zsh-autosuggestions \ | ||
-p https://github.com/zsh-users/zsh-completions; \ | ||
# Change the default shell | ||
sudo chsh -s /bin/zsh $USERNAME; \ | ||
# Change the XTERM to xterm-256color | ||
sed -i 's/TERM=xterm/TERM=xterm-256color/g' $HOME/.zshrc; |
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,10 @@ | ||
{ | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"runArgs": [ | ||
"--privileged", | ||
"--cap-add=NET_ADMIN", | ||
"--device=/dev/net/tun" | ||
] | ||
} |
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,13 +1,9 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = false | ||
trim_trailing_whitespace=true | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.sh] | ||
indent_style = tab | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
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,250 @@ | ||
name: Build GPGUI | ||
on: | ||
push: | ||
paths-ignore: | ||
- LICENSE | ||
- "*.md" | ||
- .vscode | ||
- .devcontainer | ||
branches: | ||
- main | ||
# tags: | ||
# - v*.*.* | ||
jobs: | ||
# Include arm64 if ref is a tag | ||
setup-matrix: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} | ||
steps: | ||
- name: Set up matrix | ||
id: set-matrix | ||
run: | | ||
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then | ||
echo "matrix=[\"amd64\", \"arm64\"]" >> $GITHUB_OUTPUT | ||
else | ||
echo "matrix=[\"amd64\"]" >> $GITHUB_OUTPUT | ||
fi | ||
build-fe: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout gpgui repo | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GH_PAT }} | ||
repository: yuezk/gpgui | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
|
||
- name: Install dependencies | ||
run: | | ||
cd app | ||
pnpm install | ||
- name: Build | ||
run: | | ||
cd app | ||
pnpm run build | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: gpgui-fe | ||
path: app/dist | ||
|
||
build-tauri: | ||
needs: [setup-matrix, build-fe] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
arch: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | ||
steps: | ||
- name: Checkout gpgui repo | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GH_PAT }} | ||
repository: yuezk/gpgui | ||
path: gpgui | ||
|
||
- name: Checkout gp repo | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GH_PAT }} | ||
repository: yuezk/GlobalProtect-openconnect | ||
path: gp | ||
|
||
- name: Download gpgui-fe artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: gpgui-fe | ||
path: gpgui/app/dist | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: ${{ matrix.arch }} | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
|
||
- name: Build Tauri in Docker | ||
run: | | ||
docker run \ | ||
--rm \ | ||
-v $(pwd):/${{ github.workspace }} \ | ||
-w ${{ github.workspace }} \ | ||
-e CI=true \ | ||
--platform linux/${{ matrix.arch }} \ | ||
yuezk/gpdev:main \ | ||
"./gpgui/scripts/build.sh" | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifact-${{ matrix.arch }}-tauri | ||
path: | | ||
gpgui/.tmp/artifact | ||
package-rpm: | ||
needs: [setup-matrix, build-tauri] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
arch: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | ||
steps: | ||
- name: Checkout gpgui repo | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GH_PAT }} | ||
repository: yuezk/gpgui | ||
path: gpgui | ||
|
||
- name: Download artifact-${{ matrix.arch }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: artifact-${{ matrix.arch }}-tauri | ||
path: gpgui/.tmp/artifact | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: ${{ matrix.arch }} | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
|
||
- name: Create RPM package | ||
run: | | ||
docker run \ | ||
--rm \ | ||
-v $(pwd):/${{ github.workspace }} \ | ||
-w ${{ github.workspace }} \ | ||
--platform linux/${{ matrix.arch }} \ | ||
yuezk/gpdev:rpm-builder \ | ||
"./gpgui/scripts/build-rpm.sh" | ||
- name: Upload rpm artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifact-${{ matrix.arch }}-rpm | ||
path: | | ||
gpgui/.tmp/artifact/*.rpm | ||
package-pkgbuild: | ||
needs: [setup-matrix, build-tauri] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
arch: ${{ fromJson(needs.setup-matrix.outputs.matrix) }} | ||
steps: | ||
- name: Checkout gpgui repo | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GH_PAT }} | ||
repository: yuezk/gpgui | ||
path: gpgui | ||
|
||
- name: Download artifact-${{ matrix.arch }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: artifact-${{ matrix.arch }}-tauri | ||
path: gpgui/.tmp/artifact | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: ${{ matrix.arch }} | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
password: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
|
||
- name: Generate PKGBUILD | ||
run: | | ||
./gpgui/scripts/generate-pkgbuild.sh | ||
- name: Build PKGBUILD package | ||
run: | | ||
# Generate PKGBUILD to .tmp/pkgbuild | ||
./gpgui/scripts/generate-pkgbuild.sh | ||
# Build package | ||
docker run \ | ||
--rm \ | ||
-v $(pwd)/gpgui/.tmp/pkgbuild:/pkgbuild \ | ||
--platform linux/${{ matrix.arch }} \ | ||
yuezk/gpdev:pkgbuild | ||
- name: Upload pkgbuild artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifact-${{ matrix.arch }}-pkgbuild | ||
path: | | ||
gpgui/.tmp/pkgbuild/*.pkg.tar.zst | ||
gh-release: | ||
if: startsWith(github.ref, 'refs/tags/') | ||
runs-on: ubuntu-latest | ||
needs: | ||
- package-rpm | ||
- package-pkgbuild | ||
|
||
steps: | ||
- name: Download artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: artifact | ||
pattern: artifact-* | ||
merge-multiple: true | ||
|
||
- name: Generate checksum | ||
uses: jmgilman/actions-generate-checksum@v1 | ||
with: | ||
output: checksums.txt | ||
patterns: | | ||
artifact/* | ||
- name: Create GH release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
token: ${{ secrets.GH_PAT }} | ||
prerelease: contains(github.ref, 'latest') | ||
fail_on_unmatched_files: true | ||
files: | | ||
checksums.txt | ||
artifact/* |
Oops, something went wrong.