1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

Meta: Use sudo to unpack wabt package in CI

The self-hosted runner doesn't run the commands as root.
This commit is contained in:
Ali Mohammad Pur 2022-03-17 23:10:18 +03:30
parent 01d506a953
commit 83883bf3cb

View file

@ -53,7 +53,8 @@ jobs:
test -e /opt/wabt-1.0.27 || ( test -e /opt/wabt-1.0.27 || (
cd /tmp cd /tmp
wget https://github.com/WebAssembly/wabt/releases/download/1.0.27/wabt-1.0.27-ubuntu.tar.gz wget https://github.com/WebAssembly/wabt/releases/download/1.0.27/wabt-1.0.27-ubuntu.tar.gz
tar xf wabt-1.0.27-ubuntu.tar.gz -C /opt sudo tar xf wabt-1.0.27-ubuntu.tar.gz -C /opt
rm wabt-1.0.27-ubuntu.tar.gz
) )
- name: Setup Python - name: Setup Python