CI + fastlane
This commit is contained in:
parent
f76b722268
commit
46d299c210
|
@ -0,0 +1,39 @@
|
|||
image: hatsoftwares/mastalab-ci:latest
|
||||
|
||||
before_script:
|
||||
- export ANDROID_HOME=/opt/android-sdk-linux
|
||||
- export PATH=$PATH:/opt/android-sdk-linux/platform-tools/
|
||||
- chmod +x gradlew
|
||||
|
||||
stages:
|
||||
- build-and-test
|
||||
- tag
|
||||
- toot
|
||||
|
||||
.no-upload: &no-upload
|
||||
stage: build-and-test
|
||||
retry: 2
|
||||
|
||||
assembleDebug:
|
||||
<<: *no-upload
|
||||
cache:
|
||||
key: "${CI_COMMIT_TAG}"
|
||||
paths:
|
||||
- app/build/outputs/apk/debug/app-debug.apk
|
||||
policy: push
|
||||
script:
|
||||
- ./gradlew assembleDebug
|
||||
|
||||
lintDebug:
|
||||
<<: *no-upload
|
||||
script:
|
||||
- ./gradlew -Pci --console=plain :app:lint -PbuildDir=lint
|
||||
except:
|
||||
- tags
|
||||
|
||||
debugTests:
|
||||
<<: *no-upload
|
||||
script:
|
||||
- ./gradlew -Pci --console=plain :app:test
|
||||
except:
|
||||
- tags
|
|
@ -0,0 +1,26 @@
|
|||
FROM openjdk:8-jdk
|
||||
RUN apt-get -y update
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y apt-utils
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt-get dist-upgrade -y
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y wget tar unzip lib32stdc++6 lib32z1 git
|
||||
|
||||
ENV ANDROID_COMPILE_SDK "28"
|
||||
ENV ANDROID_BUILD_TOOLS "28.0.3"
|
||||
ENV ANDROID_SDK_TOOLS "4333796"
|
||||
|
||||
WORKDIR /opt/
|
||||
RUN wget --quiet --output-document=android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-${ANDROID_SDK_TOOLS}.zip
|
||||
RUN unzip -q -d android-sdk-linux android-sdk.zip
|
||||
RUN echo y | android-sdk-linux/tools/bin/sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" >/dev/null
|
||||
RUN echo y | android-sdk-linux/tools/bin/sdkmanager "platform-tools" >/dev/null
|
||||
RUN echo y | android-sdk-linux/tools/bin/sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}" >/dev/null
|
||||
RUN yes | android-sdk-linux/tools/bin/sdkmanager --licenses
|
||||
|
||||
WORKDIR /tmp/
|
||||
RUN git clone --depth=1 https://framagit.org/tom79/fedilab-tube
|
||||
WORKDIR /tmp/TubeLab
|
||||
RUN chmod +x gradlew
|
||||
RUN ANDROID_HOME=/opt/android-sdk-linux PATH=$PATH:/opt/android-sdk-linux/platform-tools/ ./gradlew tasks
|
||||
RUN ANDROID_HOME=/opt/android-sdk-linux PATH=$PATH:/opt/android-sdk-linux/platform-tools/ ./gradlew assembleDebug
|
||||
RUN ANDROID_HOME=/opt/android-sdk-linux PATH=$PATH:/opt/android-sdk-linux/platform-tools/ ./gradlew --stacktrace -Pci --console=plain :app:test
|
||||
RUN ANDROID_HOME=/opt/android-sdk-linux PATH=$PATH:/opt/android-sdk-linux/platform-tools/ ./gradlew --stacktrace -Pci --console=plain :app:lint -PbuildDir=lint
|
|
@ -0,0 +1,2 @@
|
|||
all:
|
||||
docker build -t tom79/mastalab-ci:latest . && docker push tom79/mastalab-ci:latest
|
|
@ -28,9 +28,3 @@ Si vous connectez votre compte, vous pourrez interagir avec les vidéos :
|
|||
### Télécharger
|
||||
Les fichiers apk (debug) sont téléchargeables sur [Framadrive](https://framadrive.org/s/HzzxraPdmF5FDYd)
|
||||
L’application sera par la suite publiée sur F-Droid.
|
||||
|
||||
|
||||
### TODO
|
||||
- ~~Vidéos des chaînes suivies~~ OK
|
||||
- ~~OpenID~~ OK
|
||||
- Optimisation pour les tablettes
|
|
@ -11,7 +11,7 @@ android {
|
|||
minSdkVersion 21
|
||||
targetSdkVersion 29
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
versionName "1.0.0"
|
||||
multiDexEnabled true
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Première version
|
|
@ -0,0 +1,21 @@
|
|||
*Mode non authentifié*
|
||||
|
||||
Ce mode permet de visionner les vidéos sur différentes instances (en sélectionnant une instance académique). Cependant, vous ne pourrez pas interagir totalement avec les vidéos. Vous pourrez :
|
||||
|
||||
- Partager une vidéo,
|
||||
- Télécharger une vidéo.
|
||||
|
||||
|
||||
*Mode authentifié*
|
||||
|
||||
Si vous connectez votre compte, vous pourrez interagir avec les vidéos :
|
||||
|
||||
- Écrire/supprimer un commentaire,
|
||||
- Ajouter/supprimer des vidéos dans les listes de lecture,
|
||||
- Gérer les listes de lecture,
|
||||
- Suivre une chaîne,
|
||||
- Thumbs-up/down,
|
||||
- Téléverser des vidéos,
|
||||
- Modifier vos vidéos,
|
||||
- Supprimer vos vidéos,
|
||||
- Voir vos notifications.
|
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
After Width: | Height: | Size: 132 KiB |
Binary file not shown.
After Width: | Height: | Size: 65 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.3 MiB |
Binary file not shown.
After Width: | Height: | Size: 49 KiB |
|
@ -0,0 +1 @@
|
|||
TubeLab est une application Peertube pour les instances académiques.
|
Loading…
Reference in New Issue