Skip to content

Commit

Permalink
actions use sudo :upside_down:
Browse files Browse the repository at this point in the history
  • Loading branch information
Minigrim0 committed May 16, 2024
1 parent d5d24f3 commit 5161d3d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

- name: Install rust dependencies
run: |
apt update && sudo apt install libwebkit2gtk-4.0-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev -y
sudo apt update && sudo sudo apt install libwebkit2gtk-4.0-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev -y
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. "$HOME/.cargo/env"
rustup target add wasm32-unknown-unknown
Expand All @@ -21,15 +21,15 @@ jobs:
- name: Install cross-compilers
run: |
apt update && apt install gcc-aarch64-linux-gnu -y
sudo apt update && sudo apt install gcc-aarch64-linux-gnu -y
sudo dpkg --add-architecture arm64
mv .github/sources.list /etc/apt/sources.list
apt update && apt upgrade -y
mv .github/sources.list /etc/sudo apt/sources.list
sudo apt update && sudo apt upgrade -y
- name: Install arm dependencies
run: |
sudo apt install libwebkit2gtk-4.0-dev:arm64 -y
sudo apt install libssl-dev:arm64 -y
sudo sudo apt install libwebkit2gtk-4.0-dev:arm64 -y
sudo sudo apt install libssl-dev:arm64 -y
- name: Build application
run: |
Expand Down

0 comments on commit 5161d3d

Please sign in to comment.