-
-
Notifications
You must be signed in to change notification settings - Fork 22
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 #89 from GlitterWare/dev
v1.8.0 - Entry Tags
- Loading branch information
Showing
97 changed files
with
4,006 additions
and
1,082 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#! /bin/bash | ||
cd /Passy | ||
|
||
echo "====================================================" | ||
echo "Install dependencies" | ||
echo "====================================================" | ||
|
||
apt-get update | ||
apt-get -y install clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf python3-pip python3-setuptools squashfs-tools strace util-linux zsync git file unzip zip wget curl libc6 | ||
|
||
echo "====================================================" | ||
echo "Configure" | ||
echo "====================================================" | ||
|
||
export PATH="$PATH:$PWD/submodules/flutter/bin" | ||
git config --global --add safe.directory /Passy | ||
git config --global --add safe.directory /Passy/submodules/flutter | ||
git submodule init | ||
git submodule update | ||
|
||
echo "====================================================" | ||
echo "Install dart" | ||
echo "====================================================" | ||
|
||
mkdir submodules/flutter/bin/cache | ||
flutter doctor | ||
export LAST_PWD=$PWD | ||
cd submodules/flutter/bin/cache | ||
rm -rf dart-sdk | ||
wget https://storage.googleapis.com/dart-archive/channels/stable/release/3.3.1/sdk/dartsdk-linux-arm-release.zip | ||
unzip dartsdk-linux-arm-release.zip | ||
rm dartsdk-linux-arm-release.zip | ||
cd $LAST_PWD | ||
|
||
echo "====================================================" | ||
echo "Install flutter" | ||
echo "====================================================" | ||
|
||
flutter clean | ||
flutter doctor | ||
|
||
echo "====================================================" | ||
echo "Configure flutter" | ||
echo "====================================================" | ||
|
||
flutter config --no-analytics | ||
|
||
echo "====================================================" | ||
echo "Build Passy CLI" | ||
echo "====================================================" | ||
|
||
bash build_cli.sh | ||
|
||
echo "====================================================" | ||
echo "Prepare releases" | ||
echo "====================================================" | ||
|
||
cd /passy-build | ||
mkdir cli | ||
cp -r /Passy/build/cli/latest/. cli | ||
|
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,48 @@ | ||
name: Build Passy for Linux ARMv7 | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [ opened, synchronize, reopened, review_requested ] | ||
branches: | ||
- main | ||
- dev | ||
jobs: | ||
build_linux_armv7: | ||
name: Build Passy CLI for Linux ARMv7 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Set up QEMU | ||
uses: docker/[email protected] | ||
- name: Create build directory | ||
shell: bash | ||
run: | | ||
cd .. | ||
mkdir build | ||
mkdir bin | ||
cd bin | ||
wget https://raw.githubusercontent.com/GlitterWare/Passy/$GITHUB_SHA/.github/workflows/armv7.sh | ||
chmod +x armv7.sh | ||
- name: Install dependencies | ||
shell: bash | ||
run: sudo apt install -y qemu binfmt-support qemu-user-static qemu-system-arm | ||
- name: Build for ARMv7 | ||
uses: tj-actions/docker-run@v2 | ||
with: | ||
image: ubuntu:latest | ||
name: ubuntu | ||
options: --rm --platform linux/arm/v7 -v $PWD:/Passy -v /home/runner/work/Passy/build:/passy-build -v /home/runner/work/Passy/bin:/passy-bin | ||
args: /passy-bin/armv7.sh | ||
- name: Archive Passy CLI build | ||
uses: thedoctor0/[email protected] | ||
with: | ||
type: zip | ||
directory: ../build | ||
filename: Passy-CLI-Linux-ARMv7.zip | ||
path: cli | ||
- name: Upload Passy CLI build | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: passy-cli-linux-armv7 | ||
path: /home/runner/work/Passy/build/Passy-CLI-Linux-ARMv7.zip |
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.