Skip to content

Commit

Permalink
fix: 🐛 refactor CI workflow for verbose build commands and additional…
Browse files Browse the repository at this point in the history
… dependencies
  • Loading branch information
xmaihh committed Aug 9, 2024
1 parent 4bcf90d commit 02408f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,20 +169,20 @@ jobs:
if: matrix.name == 'linux'
run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
flutter build linux
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev mpv libmpv-dev dpkg-dev zip
flutter build linux --verbose
- name: Build Windows
if: matrix.name == 'windows'
run: flutter build windows
run: flutter build windows --verbose

- name: Build iOS
if: matrix.name == 'ios'
run: flutter build ios --release --no-codesign
run: flutter build ios --verbose --no-codesign

- name: Build macOS
if: matrix.name == 'macos'
run: flutter build macos
run: flutter build macos --verbose

# 部署Web平台构建产物到GitHub Pages
- name: Deploy to GitHub Pages
Expand Down

0 comments on commit 02408f1

Please sign in to comment.