Skip to content

Commit

Permalink
ci: Move the release and dbg flutter engine to correct place
Browse files Browse the repository at this point in the history
That's where our cmake expects it
  • Loading branch information
iamsergio committed Apr 11, 2024
1 parent f305d37 commit 47bb87d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/flutter-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,11 @@ jobs:
- name: Download flutter engine
run: |
wget https://github.com/ardera/flutter-ci/releases/download/engine%2Fa794cf2681c6c9fe7b260e0e84de96298dc9c18b/x64-generic.tar.xz
tar xcf x64-generic.tar.xz -C flutter_engine |
ls ${{ github.workspace }}
tar xcf x64-generic.tar.xz -C flutter_engine
cd flutter_engine
mkdir dbg rel
cp libflutter_engine.so.debug dbg/libflutter_engine.so
cp libflutter_engine.so.release rel/libflutter_engine.so
- name: Configure project ${{ matrix.preset.name }}
run: cmake -S . -B ./build-${{ matrix.preset.name }} --preset ${{ matrix.preset.name }}
Expand Down

0 comments on commit 47bb87d

Please sign in to comment.