Move to Forgejo as pipeline #noissue #41
3 changed files with 34 additions and 21 deletions
21
.drone.yml
21
.drone.yml
|
@ -1,21 +0,0 @@
|
||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: build
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
event:
|
|
||||||
include:
|
|
||||||
- push
|
|
||||||
- pull_request
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build
|
|
||||||
image: ghcr.io/cirruslabs/flutter:3.10.6
|
|
||||||
commands:
|
|
||||||
- flutter doctor
|
|
||||||
- flutter pub get
|
|
||||||
- flutter pub outdated
|
|
||||||
- flutter packages pub run build_runner build --delete-conflicting-outputs
|
|
||||||
- flutter analyze --no-pub --no-current-package lib/
|
|
||||||
- flutter build apk --debug
|
|
21
.forgejo/workflows/build.yaml
Normal file
21
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
on: [ push ]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: ghcr.io/cirruslabs/flutter:3.10.6
|
||||||
|
steps:
|
||||||
|
- name: Prepare requirements
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y nodejs npm git
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
flutter doctor
|
||||||
|
flutter pub get
|
||||||
|
flutter pub outdated
|
||||||
|
flutter packages pub run build_runner build --delete-conflicting-outputs
|
||||||
|
flutter analyze --no-pub --no-current-package lib/
|
||||||
|
flutter build apk --debug
|
|
@ -3,11 +3,24 @@
|
||||||
"extends": [
|
"extends": [
|
||||||
"config:recommended", ":rebaseStalePrs", ":ignoreUnstable", "group:monorepos", "group:recommended"
|
"config:recommended", ":rebaseStalePrs", ":ignoreUnstable", "group:monorepos", "group:recommended"
|
||||||
],
|
],
|
||||||
|
"prConcurrentLimit": 0,
|
||||||
"ignorePaths": [
|
"ignorePaths": [
|
||||||
"android/**",
|
"android/**",
|
||||||
"ios/**"
|
"ios/**"
|
||||||
],
|
],
|
||||||
"ignoreDeps": [
|
"ignoreDeps": [
|
||||||
"intl"
|
"intl"
|
||||||
|
],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchPackagePatterns": [
|
||||||
|
"*"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"patch"
|
||||||
|
],
|
||||||
|
"groupName": "all patch dependencies",
|
||||||
|
"groupSlug": "all-patch-deps"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue