Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/connectivity_plus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
- name: "Install Tools"
run: ./.github/workflows/scripts/install-tools.sh
- name: "Install NetworkManager"
run: sudo apt-get install -y network-manager
run: sudo apt-get update && sudo apt-get install -y network-manager
- name: "Run Integration Test"
run: ./.github/workflows/scripts/integration-test.sh linux connectivity_plus_example

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/scripts/build-examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ fi
if [ "$ACTION" == "linux" ]
then
melos bootstrap --scope="$PLUGIN_SCOPE"
sudo apt-get update
sudo apt-get install ninja-build libgtk-3-dev
flutter doctor -v
melos exec -c 1 --scope="$PLUGIN_EXAMPLE_SCOPE" \
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/scripts/integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ fi

if [ "$ACTION" == "linux" ]
then
sudo apt-get update
sudo apt-get install ninja-build libgtk-3-dev
# Testrunner is headless. Required create virtual display for the linux tests to run.
export DISPLAY=:99
Expand Down