mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-20 04:39:16 +00:00
New app: org.gsmlg.semaphore
This commit is contained in:
parent
dca44323ca
commit
e8298b2341
1 changed files with 124 additions and 0 deletions
124
metadata/org.gsmlg.semaphore.yml
Normal file
124
metadata/org.gsmlg.semaphore.yml
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
Categories:
|
||||
- Development
|
||||
License: MIT
|
||||
AuthorName: Jonathan Gao
|
||||
AuthorEmail: gsmlg.com@gmail.com
|
||||
AuthorWebSite: https://github.com/gsmlg
|
||||
WebSite: https://gsmlg.app/apps
|
||||
SourceCode: https://github.com/gsmlg-dev/ansible-semaphore-client
|
||||
IssueTracker: https://github.com/gsmlg-dev/ansible-semaphore-client/issues
|
||||
|
||||
AutoName: semaphore
|
||||
|
||||
RepoType: git
|
||||
Repo: https://github.com/gsmlg-dev/ansible-semaphore-client
|
||||
|
||||
Builds:
|
||||
- versionName: 1.0.0
|
||||
versionCode: 11
|
||||
commit: v1.0.0
|
||||
submodules: true
|
||||
sudo:
|
||||
- apt-get update
|
||||
- apt-get install -y gcc-multilib libc-dev make
|
||||
output: build/app/outputs/flutter-apk/app-x86_64-release.apk
|
||||
srclibs:
|
||||
- flutter@stable
|
||||
- rustup@1.25.2
|
||||
prebuild:
|
||||
- version=$(sed -n -E "s/.*flutter-version:\s'(.+)'/\1/p" .github/workflows/build-apk.yml)
|
||||
- pushd $$flutter$$
|
||||
- git checkout -f $version
|
||||
- popd
|
||||
- export PUB_CACHE=$(pwd)/.pub-cache
|
||||
- $$flutter$$/bin/flutter config --no-analytics
|
||||
- $$flutter$$/bin/flutter packages pub get
|
||||
scandelete:
|
||||
- .pub-cache
|
||||
build:
|
||||
- $$rustup$$/rustup-init.sh -y --default-toolchain 1.70.0 --target x86_64-linux-android
|
||||
- source $HOME/.cargo/env
|
||||
- pushd .isar
|
||||
- bash tool/build_android.sh x64
|
||||
- mv libisar_android_x64.so libisar.so
|
||||
- mv libisar.so ../.pub-cache/hosted/pub.dev/isar_flutter_libs-*/android/src/main/jniLibs/x86_64/
|
||||
- popd
|
||||
- export PUB_CACHE=$(pwd)/.pub-cache
|
||||
- $$flutter$$/bin/flutter build apk --release --split-per-abi --target-platform="android-x64"
|
||||
ndk: r25c
|
||||
|
||||
- versionName: 1.0.0
|
||||
versionCode: 12
|
||||
commit: v1.0.0
|
||||
submodules: true
|
||||
sudo:
|
||||
- apt-get update
|
||||
- apt-get install -y gcc-multilib libc-dev make
|
||||
output: build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk
|
||||
srclibs:
|
||||
- flutter@stable
|
||||
- rustup@1.25.2
|
||||
prebuild:
|
||||
- version=$(sed -n -E "s/.*flutter-version:\s'(.+)'/\1/p" .github/workflows/build-apk.yml)
|
||||
- pushd $$flutter$$
|
||||
- git checkout -f $version
|
||||
- popd
|
||||
- export PUB_CACHE=$(pwd)/.pub-cache
|
||||
- $$flutter$$/bin/flutter config --no-analytics
|
||||
- $$flutter$$/bin/flutter packages pub get
|
||||
scandelete:
|
||||
- .pub-cache
|
||||
build:
|
||||
- $$rustup$$/rustup-init.sh -y --default-toolchain 1.70.0 --target armv7-linux-androideabi
|
||||
- source $HOME/.cargo/env
|
||||
- pushd .isar
|
||||
- bash tool/build_android.sh armv7
|
||||
- mv libisar_android_armv7.so libisar.so
|
||||
- mv libisar.so ../.pub-cache/hosted/pub.dev/isar_flutter_libs-*/android/src/main/jniLibs/armeabi-v7a/
|
||||
- popd
|
||||
- export PUB_CACHE=$(pwd)/.pub-cache
|
||||
- $$flutter$$/bin/flutter build apk --release --split-per-abi --target-platform="android-arm"
|
||||
ndk: r25c
|
||||
|
||||
- versionName: 1.0.0
|
||||
versionCode: 13
|
||||
commit: v1.0.0
|
||||
submodules: true
|
||||
sudo:
|
||||
- apt-get update
|
||||
- apt-get install -y gcc-multilib libc-dev make
|
||||
output: build/app/outputs/flutter-apk/app-arm64-v8a-release.apk
|
||||
srclibs:
|
||||
- flutter@stable
|
||||
- rustup@1.25.2
|
||||
prebuild:
|
||||
- version=$(sed -n -E "s/.*flutter-version:\s'(.+)'/\1/p" .github/workflows/build-apk.yml)
|
||||
- pushd $$flutter$$
|
||||
- git checkout -f $version
|
||||
- popd
|
||||
- export PUB_CACHE=$(pwd)/.pub-cache
|
||||
- $$flutter$$/bin/flutter config --no-analytics
|
||||
- $$flutter$$/bin/flutter packages pub get
|
||||
scandelete:
|
||||
- .pub-cache
|
||||
build:
|
||||
- $$rustup$$/rustup-init.sh -y --default-toolchain 1.70.0 --target aarch64-linux-android
|
||||
- source $HOME/.cargo/env
|
||||
- pushd .isar
|
||||
- bash tool/build_android.sh arm64
|
||||
- mv libisar_android_arm64.so libisar.so
|
||||
- mv libisar.so ../.pub-cache/hosted/pub.dev/isar_flutter_libs-*/android/src/main/jniLibs/arm64-v8a/
|
||||
- popd
|
||||
- export PUB_CACHE=$(pwd)/.pub-cache
|
||||
- $$flutter$$/bin/flutter build apk --release --split-per-abi --target-platform="android-arm64"
|
||||
ndk: r25c
|
||||
|
||||
AutoUpdateMode: Version
|
||||
UpdateCheckMode: Tags ^v
|
||||
VercodeOperation:
|
||||
- 10 * %c + 1
|
||||
- 10 * %c + 2
|
||||
- 10 * %c + 3
|
||||
UpdateCheckData: pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+
|
||||
CurrentVersion: 1.0.0
|
||||
CurrentVersionCode: 13
|
||||
Loading…
Reference in a new issue