Skip to content

Commit a3343ed

Browse files
committed
Install Flutter dependencies for Linux
1 parent 38398d8 commit a3343ed

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ jobs:
190190
strategy:
191191
matrix:
192192
runner: [ubuntu-latest, macos-latest]
193-
needs: [test, fetch_sqlite]
193+
#needs: [test, fetch_sqlite]
194+
needs: [fetch_sqlite]
194195
runs-on: ${{ matrix.runner }}
195196
steps:
196197
- name: List simulators
@@ -211,6 +212,12 @@ jobs:
211212
- name: Flutter version
212213
run: flutter --version
213214

215+
- name: Setup runner
216+
if: runner.os == 'linux'
217+
run: |
218+
sudo apt-get update -y
219+
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev libstdc++-12-dev
220+
214221
- name: Download compiled sqlite3
215222
uses: actions/download-artifact@v5
216223
with:

0 commit comments

Comments
 (0)