Use JSC version available in Ubuntu 20.04 in the CI builds

Use the newer OS and JavaScript Core library versions for the CI build,
we don't have to remain with the old version here, as the newer one
works too.
This commit is contained in:
Vadim Zeitlin 2021-11-02 19:42:11 +01:00 committed by William S Fulton
commit 6a56426f8f
2 changed files with 1 additions and 2 deletions

View file

@ -78,7 +78,6 @@ jobs:
CPPSTD: c++14
- SWIGLANG: javascript
ENGINE: jsc
os: ubuntu-18.04 # libwebkitgtk-dev dependency not available in 20.04.
- SWIGLANG: javascript
ENGINE: v8
os: ubuntu-18.04 # libv8-dev only actually provides v8 in 18.04.

View file

@ -55,7 +55,7 @@ case "$SWIGLANG" in
fi
;;
"jsc")
$RETRY sudo apt-get install -qq libwebkitgtk-dev
$RETRY sudo apt-get install -qq libjavascriptcoregtk-4.0-dev
;;
"v8")
$RETRY sudo apt-get install -qq libv8-dev