mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +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:
parent
01d506a953
commit
83883bf3cb
Notes:
sideshowbarker
2024-07-17 17:14:54 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/83883bf3cb
1 changed files with 2 additions and 1 deletions
3
.github/workflows/libjs-test262.yml
vendored
3
.github/workflows/libjs-test262.yml
vendored
|
@ -53,7 +53,8 @@ jobs:
|
|||
test -e /opt/wabt-1.0.27 || (
|
||||
cd /tmp
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue