From f5a8dc02b42f9a276c24cb301ec450517a94ef71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Osztrogon=C3=A1c?= Date: Wed, 4 Jan 2023 13:09:24 +0100 Subject: [PATCH] Fix failing CI jobs (#5032) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test262 test runner needs python2, we need to install it manually on Ubuntu 22.04. Disable ESP_IDF_Build_Test CI job temporarily, because it is broken. JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác oszi@inf.u-szeged.hu --- .github/workflows/gh-actions.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/gh-actions.yml b/.github/workflows/gh-actions.yml index 5984adf83..158beb79a 100644 --- a/.github/workflows/gh-actions.yml +++ b/.github/workflows/gh-actions.yml @@ -79,6 +79,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - run: sudo apt update + - run: sudo apt install python2 - run: $RUNNER --test262 update - uses: actions/upload-artifact@v2 if: success() || failure() @@ -91,6 +93,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - run: sudo apt update + - run: sudo apt install python2 - run: $RUNNER --test262 update --build-debug --test262-test-list=built-ins,annexB,harness,intl402 - uses: actions/upload-artifact@v2 if: success() || failure() @@ -103,6 +107,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - run: sudo apt update + - run: sudo apt install python2 - run: $RUNNER --test262 update --build-debug --test262-test-list=language - uses: actions/upload-artifact@v2 if: success() || failure() @@ -281,15 +287,15 @@ jobs: - run: make -f ./targets/baremetal-sdk/espressif/esp8266-rtos-sdk/Makefile.travis install-noapt - run: make -f ./targets/baremetal-sdk/espressif/esp8266-rtos-sdk/Makefile.travis script - ESP_IDF_Build_Test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: '3.8' - - run: make -f ./targets/baremetal-sdk/espressif/esp-idf/Makefile.travis install-noapt - - run: make -f ./targets/baremetal-sdk/espressif/esp-idf/Makefile.travis script +# ESP_IDF_Build_Test: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v2 +# - uses: actions/setup-python@v2 +# with: +# python-version: '3.8' +# - run: make -f ./targets/baremetal-sdk/espressif/esp-idf/Makefile.travis install-noapt +# - run: make -f ./targets/baremetal-sdk/espressif/esp-idf/Makefile.travis script Notification: runs-on: ubuntu-latest