2024-12-21 20:02:56 +00:00
|
|
|
name: Check master code
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- testing
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
checkout:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v4
|
2024-12-22 20:05:47 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Fetch tags
|
|
|
|
run: git fetch --tags -p
|
2024-12-21 20:02:56 +00:00
|
|
|
- name: Init compose
|
|
|
|
uses: KengoTODA/actions-setup-docker-compose@v1
|
|
|
|
with:
|
|
|
|
version: "2.23.3"
|
|
|
|
- name: run selfoss
|
|
|
|
run: |
|
|
|
|
docker compose -f .gitea/workflows/assets/docker-compose.yml up -d
|
|
|
|
response=$(curl 172.17.0.1:8888/api/about)
|
|
|
|
echo $response
|
2024-12-22 20:05:47 +00:00
|
|
|
- uses: actions/setup-java@v4
|
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: '17'
|
|
|
|
- name: Setup Android SDK
|
|
|
|
uses: android-actions/setup-android@v3
|
|
|
|
- name: Configure gradle...
|
|
|
|
run: mkdir -p ~/.gradle && echo "org.gradle.daemon=false\nignoreGitVersion=true\nsystemProp.org.gradle.internal.http.connectionTimeout=180000\nsystemProp.org.gradle.internal.http.socketTimeout=180000" >> ~/.gradle/gradle.properties
|
|
|
|
- name: ui tests
|
|
|
|
uses: reactivecircus/android-emulator-runner@v2
|
|
|
|
with:
|
|
|
|
api-level: 25
|
|
|
|
script: ./gradlew connectedAndroidTest
|
2024-12-21 20:02:56 +00:00
|
|
|
- name: Clean
|
|
|
|
if: success() || failure()
|
|
|
|
run: |
|
2024-12-22 20:05:47 +00:00
|
|
|
docker compose -f .gitea/workflows/assets/docker-compose.yml stop
|