ci: remove other workflows, keep only apple-only
This commit is contained in:
159
.github/workflows/ci.yml
vendored
159
.github/workflows/ci.yml
vendored
@@ -1,159 +0,0 @@
|
||||
name: Build & Test
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install jq
|
||||
run: apt-get update && apt-get install -y jq
|
||||
- name: Setup Flutter
|
||||
uses: actions/flutter-action@v2
|
||||
with:
|
||||
flutter-version: '3.35.7'
|
||||
- name: Get dependencies
|
||||
run: flutter pub get
|
||||
- name: Analyze
|
||||
run: flutter analyze
|
||||
- name: Run tests
|
||||
run: flutter test
|
||||
|
||||
build-android:
|
||||
needs: test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install jq
|
||||
run: apt-get update && apt-get install -y jq
|
||||
- name: Setup Flutter
|
||||
uses: actions/flutter-action@v2
|
||||
with:
|
||||
flutter-version: '3.35.7'
|
||||
- name: Setup Java
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '17'
|
||||
- name: Get dependencies
|
||||
run: flutter pub get
|
||||
- name: Build APK
|
||||
run: flutter build apk --release --split-per-abi --no-tree-shake-icons
|
||||
- name: Upload APK
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: habo-apks
|
||||
path: build/app/outputs/flutter-apk/
|
||||
|
||||
build-linux:
|
||||
needs: test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install jq
|
||||
run: apt-get update && apt-get install -y jq
|
||||
- name: Setup Flutter
|
||||
uses: actions/flutter-action@v2
|
||||
with:
|
||||
flutter-version: '3.35.7'
|
||||
- name: Install Linux deps
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y ninja-build clang cmake pkg-config libgtk-3-dev libblkid-dev liblzma-dev libasound2-dev
|
||||
- name: Get dependencies
|
||||
run: flutter pub get
|
||||
- name: Build
|
||||
run: flutter build linux --release
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: habo-linux
|
||||
path: build/linux/x64/release/bundle/
|
||||
|
||||
build-macos:
|
||||
needs: test
|
||||
runs-on: mac-runner
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install jq
|
||||
run: brew install jq
|
||||
- name: Setup Flutter
|
||||
uses: actions/flutter-action@v2
|
||||
with:
|
||||
flutter-version: '3.35.7'
|
||||
- name: Install macOS deps
|
||||
run: |
|
||||
brew install cocoapods
|
||||
- name: Get dependencies
|
||||
run: flutter pub get
|
||||
- name: Build macOS
|
||||
run: flutter build macos --release
|
||||
- name: Create DMG
|
||||
run: |
|
||||
cd build/macos/Build/Products/Release
|
||||
hdiutil create -volname Habo -srcfolder habo.app -ov -format UDZO habo.dmg
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: habo-macos
|
||||
path: build/macos/Build/Products/Release/habo.dmg
|
||||
|
||||
build-ios:
|
||||
needs: test
|
||||
runs-on: mac-runner
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install jq
|
||||
run: brew install jq
|
||||
- name: Setup Flutter
|
||||
uses: actions/flutter-action@v2
|
||||
with:
|
||||
flutter-version: '3.35.7'
|
||||
- name: Get dependencies
|
||||
run: flutter pub get
|
||||
- name: Install CocoaPods
|
||||
run: cd ios && pod install
|
||||
- name: Build iOS
|
||||
run: flutter build ios --release --no-codesign --no-tree-shake-icons
|
||||
- name: Package .app
|
||||
run: |
|
||||
mkdir -p payload
|
||||
cp -r build/ios/iphoneos/Runner.app payload/
|
||||
cd payload
|
||||
zip -r ../Habo-iOS-no-sign.zip Runner.app
|
||||
- name: Upload iOS artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: habo-ios-no-sign
|
||||
path: Habo-iOS-no-sign.zip
|
||||
|
||||
build-windows:
|
||||
needs: test
|
||||
runs-on: windows-runner
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install jq
|
||||
run: choco install jq -y
|
||||
- name: Setup Flutter
|
||||
uses: actions/flutter-action@v2
|
||||
with:
|
||||
flutter-version: '3.35.7'
|
||||
- name: Get dependencies
|
||||
run: flutter pub get
|
||||
- name: Build Windows
|
||||
run: flutter build windows --release
|
||||
- name: Create ZIP
|
||||
run: |
|
||||
cd build/windows/x64/runner/Release
|
||||
Compress-Archive -Path * -DestinationPath habo-windows.zip
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: habo-windows
|
||||
path: build/windows/x64/runner/Release/habo-windows.zip
|
||||
34
.github/workflows/ios-only.yml
vendored
34
.github/workflows/ios-only.yml
vendored
@@ -1,34 +0,0 @@
|
||||
name: Build iOS
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-ios:
|
||||
runs-on: mac-runner
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install jq
|
||||
run: brew install jq
|
||||
- name: Setup Flutter
|
||||
uses: actions/flutter-action@v2
|
||||
with:
|
||||
flutter-version: '3.35.7'
|
||||
- name: Get dependencies
|
||||
run: flutter pub get
|
||||
- name: Install CocoaPods
|
||||
run: cd ios && pod install
|
||||
- name: Build iOS
|
||||
run: flutter build ios --release --no-codesign --no-tree-shake-icons
|
||||
- name: Package .app
|
||||
run: |
|
||||
mkdir -p payload
|
||||
cp -r build/ios/iphoneos/Runner.app payload/
|
||||
cd payload
|
||||
zip -r ../Habo-iOS-no-sign.zip Runner.app
|
||||
- name: Upload iOS artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: habo-ios-no-sign
|
||||
path: Habo-iOS-no-sign.zip
|
||||
@@ -1 +0,0 @@
|
||||
# test
|
||||
Reference in New Issue
Block a user