Skip to content

Commit

Permalink
Enable hardware acceleration for Android emulator & disable unused_re…
Browse files Browse the repository at this point in the history
…sult lint
  • Loading branch information
Pante committed May 30, 2024
1 parent 14c6e0d commit c949ad3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/stevia_integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
with:
distribution: 'temurin'
java-version: 17
- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- uses: subosito/[email protected]
- run: flutter pub get
- run: flutter build appbundle --debug
Expand Down
1 change: 1 addition & 0 deletions stevia/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ linter:
analyzer:
errors:
deprecated_member_use: ignore # TODO: enable once they fix the WillPopScope nonsense
unused_result: ignore # The rule seems to break almost every release.
2 changes: 1 addition & 1 deletion sugar/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ linter:

analyzer:
errors:
unused_result: ignore # TODO: enable once https://github.com/dart-lang/sdk/issues/51543 is fixed
unused_result: ignore # The rule seems to break almost every release.
exclude:
- lib/src/time/zone/info/**
- misc/**
Expand Down

0 comments on commit c949ad3

Please sign in to comment.