Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Pin Ubuntu CI images to 20.04 #315

Merged
merged 3 commits into from
Mar 15, 2024
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
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
codegen:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: build
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Check if the git repository is clean
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
linux:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -52,7 +52,7 @@ jobs:
run: |
./v8.sh
linux-32bits:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
defaults:
run:
shell: alpine.sh {0}
Expand All @@ -72,7 +72,7 @@ jobs:
run: |
make test
linux-s390x:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
defaults:
run:
shell: alpine.sh {0}
Expand All @@ -92,7 +92,7 @@ jobs:
run: |
make test
linux-gcc48:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container:
image: ubuntu:14.04
steps:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
run: |
time make test262
linux-examples:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: build
Expand All @@ -144,7 +144,7 @@ jobs:
./build/qjs tests/test_bjson.js
./build/function_source
linux-shared:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: build
Expand All @@ -155,7 +155,7 @@ jobs:
run: |
make stats
linux-asan:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -174,7 +174,7 @@ jobs:
run: |
time make test262
linux-msan:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -190,7 +190,7 @@ jobs:
run: |
make test
linux-ubsan:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -209,7 +209,7 @@ jobs:
run: |
time make test262
linux-tcc:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
make stats

emscripten:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: mymindstorm/setup-emsdk@v13
Expand All @@ -441,7 +441,7 @@ jobs:
- name: result
run: ls -lh build
wasi:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: jcbhmr/setup-wasmtime@v2
Expand Down Expand Up @@ -526,7 +526,7 @@ jobs:
gmake test

android:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container: reactnativecommunity/react-native-android:v13.0
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
linux-x86:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: jirutka/setup-alpine@v1
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
path: build/*-linux-x86

linux-x86_64:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: jirutka/setup-alpine@v1
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
path: build/*-windows-x86_64.exe

wasi:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: setup wasi-sdk
Expand All @@ -170,7 +170,7 @@ jobs:

upload-to-release:
needs: [linux-x86, linux-x86_64, macos, windows-x86, windows-x86_64, wasi]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: get assets
uses: actions/download-artifact@v3
Expand Down
1 change: 1 addition & 0 deletions v8.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const exclude = [
"arguments-indirect.js", // implementation-defined
"array-concat.js", // slow
"array-isarray.js", // unstable output due to stack overflow
"array-join.js", // unstable output due to stack overflow
"ascii-regexp-subject.js", // slow
"asm-directive.js", // v8 specific
"disallow-codegen-from-strings.js", // --disallow-code-generation-from-strings
Expand Down
13 changes: 0 additions & 13 deletions v8.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,6 @@
=== array-join-element-tostring-prototype-side-effects.js
=== array-join-nesting.js
=== array-join-nonarray-length-getter-side-effects.js
=== array-join.js
RangeError: Maximum call stack size exceeded
at join (native)
at toString (native)
at join (native)
at toString (native)
at join (native)
at toString (native)
at join (native)
at toString (native)
at join (native)
at toString (native)

=== array-lastindexof.js
=== array-length-number-conversion.js
=== array-length.js
Expand Down
Loading