Skip to content

Commit

Permalink
Temporarily prevent pana from running on CI builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
matux committed Mar 10, 2023
1 parent be53942 commit 82aa9cb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Flutter version ${{ matrix.flutter_version }} (Android)
strategy:
matrix:
flutter_version: ['3.7.5']
flutter_version: ['3.3.0']

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
name: Flutter version ${{ matrix.flutter_version }} (iOS)
strategy:
matrix:
flutter_version: ['3.7.5']
flutter_version: ['3.3.0']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ local.properties
**/.DS_Store

**/*.db

.metals/
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
},
// Remove from file watching
"files.watcherExclude": {
"**/.fvm": true
"**/.fvm": true,
"**/target": true
},
"java.configuration.updateBuildConfiguration": "automatic",
}
}
4 changes: 2 additions & 2 deletions build_tools/run-pana
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function run-pana-checks {

case "$FLUTTER_VERSION" in
1.*) echo "Skipping pana checks for Flutter ${FLUTTER_VERSION}" >&2 ;;
2.*) run-pana-checks ;;
3.*) run-pana-checks ;;
2.*) ;;
3.*) ;;
*) echo "Unknown Flutter version ${FLUTTER_VERSION}" >&2 && exit 1 ;;
esac
1 change: 0 additions & 1 deletion rollbar_dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ environment:
dependencies:
http: ^0.13.0
meta: ^1.7.0
async: ^2.10.0
sqlite3: ^1.7.0
collection: ^1.16.0
stack_trace: ^1.10.0
Expand Down

0 comments on commit 82aa9cb

Please sign in to comment.