From 3b7409f3a7311430bb4e5e1f065e386b0db71d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Osztrogon=C3=A1c?= Date: Thu, 24 Sep 2020 13:32:32 +0200 Subject: [PATCH] Run test262 tests on CI on Ubuntu 20.04 (#4232) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The timeout utility in Ubuntu 18.04 (GNU CoreUtils 8.28) has a bug which caused false positive test failures regulary. This bug is already fixed in CoreUtils, and Ubuntu 20.04 LTS shipped the fixed version of timeout. https://github.com/coreutils/coreutils/commit/cbf35912da66a17a6113d5a434214dd7651f403a JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác csaba.osztrogonac@h-lab.eu --- .github/workflows/gh-actions.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gh-actions.yml b/.github/workflows/gh-actions.yml index b3c8e6261..f32631fca 100644 --- a/.github/workflows/gh-actions.yml +++ b/.github/workflows/gh-actions.yml @@ -61,14 +61,14 @@ jobs: run: $RUNNER --unittests -q Conformance_Tests_ES5_1: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v1 - name: Test262 - ES5.1 run: $RUNNER --test262 Conformance_Tests_ES2015: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v1 - name: Test262 - ES2015 @@ -80,7 +80,7 @@ jobs: path: build/tests/test262_tests_es2015/local/bin/test262.report Conformance_Tests_ESNext_A: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v1 - name: Test262 - ESNext (built-ins,annexB,harness,intl402) @@ -92,7 +92,7 @@ jobs: path: build/tests/test262_tests_esnext/local/bin/test262.report Conformance_Tests_ESNext_B: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v1 - name: Test262 - ESNext (language)