fix/ci-optimizations #2

Merged
remoll merged 3 commits from fix/ci-optimizations into main 2024-05-04 15:50:36 +00:00
3 changed files with 53 additions and 8 deletions
Showing only changes of commit 822bfab0a3 - Show all commits

View File

@ -1,5 +1,10 @@
on: push on:
pull_request:
branches:
- main
name: Build and release APK name: Build and release APK
jobs: jobs:
build: build:
name: Build APK name: Build APK
@ -9,7 +14,7 @@ jobs:
- name: Install prerequisites - name: Install prerequisites
run: | run: |
sudo apt-get update sudo apt-get update
# sudo apt-get install -y xz-utils unzip sudo apt-get install -y xz-utils unzip
- uses: https://gitea.com/actions/checkout@v4 - uses: https://gitea.com/actions/checkout@v4
@ -24,8 +29,8 @@ jobs:
flutter-version: 3.19.6 flutter-version: 3.19.6
cache: true cache: true
# - name: Setup Android SDK - name: Setup Android SDK
# uses: https://github.com/android-actions/setup-android@v3 uses: https://github.com/android-actions/setup-android@v3
- run: flutter pub get - run: flutter pub get

View File

@ -1,21 +1,30 @@
on: push on:
name: Test, Build and Release web pull_request:
branches:
- main
name: Build web
jobs: jobs:
build: build:
name: Build Web name: Build Web
runs-on: k8s runs-on: k8s
steps: steps:
- name: Install prerequisites - name: Install prerequisites
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get install -y xz-utils sudo apt-get install -y xz-utils
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: https://github.com/subosito/flutter-action@v2 - uses: https://github.com/subosito/flutter-action@v2
with: with:
channel: stable channel: stable
flutter-version: 3.19.6 flutter-version: 3.19.6
cache: true cache: true
- run: flutter pub get
# - run: flutter test - run: flutter pub get
- run: flutter build web

View File

@ -0,0 +1,31 @@
on:
push:
pull_request:
branches:
- main
name: Test code
jobs:
test:
name: Test code
runs-on: k8s
steps:
- name: Install prerequisites
run: |
sudo apt-get update
sudo apt-get install -y xz-utils
- uses: actions/checkout@v4
- uses: https://github.com/subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.6
cache: true
- run: flutter pub get
- run: flutter test