From 920c9c051c4651ceb7d5da98863d49680d3119f7 Mon Sep 17 00:00:00 2001 From: maxb-io <105273783+maxb-io@users.noreply.github.com> Date: Mon, 31 Jul 2023 11:48:20 +0300 Subject: [PATCH 1/5] sanity-check, switched to public runner --- .github/workflows/sanity_check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sanity_check.yml b/.github/workflows/sanity_check.yml index 1e7b00f741..d1b7ba1371 100644 --- a/.github/workflows/sanity_check.yml +++ b/.github/workflows/sanity_check.yml @@ -6,8 +6,8 @@ permissions: jobs: check: name: Check TARGETS file and code format - #runs-on: ubuntu:20.04 - runs-on: [self-hosted, ubuntu, asrunner] + runs-on: ubuntu:20.04 + #runs-on: [self-hosted, ubuntu, asrunner] container: image: ubuntu:focal steps: From 55b1420c65094b5ec9a72379c9c228960118d929 Mon Sep 17 00:00:00 2001 From: maxb-io <105273783+maxb-io@users.noreply.github.com> Date: Mon, 31 Jul 2023 11:53:01 +0300 Subject: [PATCH 2/5] sanity-check, switched to public runner --- .github/workflows/sanity_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sanity_check.yml b/.github/workflows/sanity_check.yml index d1b7ba1371..7b96338c1f 100644 --- a/.github/workflows/sanity_check.yml +++ b/.github/workflows/sanity_check.yml @@ -6,7 +6,7 @@ permissions: jobs: check: name: Check TARGETS file and code format - runs-on: ubuntu:20.04 + runs-on: ubuntu-20.04 #runs-on: [self-hosted, ubuntu, asrunner] container: image: ubuntu:focal From aa12ff3cf99cad9959fda61c7dc321726b80447d Mon Sep 17 00:00:00 2001 From: maxb-io <105273783+maxb-io@users.noreply.github.com> Date: Mon, 31 Jul 2023 12:10:57 +0300 Subject: [PATCH 3/5] sanity-check, avoiding use of docker container --- .github/workflows/sanity_check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sanity_check.yml b/.github/workflows/sanity_check.yml index 7b96338c1f..b50e6eb9d8 100644 --- a/.github/workflows/sanity_check.yml +++ b/.github/workflows/sanity_check.yml @@ -8,8 +8,8 @@ jobs: name: Check TARGETS file and code format runs-on: ubuntu-20.04 #runs-on: [self-hosted, ubuntu, asrunner] - container: - image: ubuntu:focal + #container: + # image: ubuntu:focal steps: - name: pre From 2097e5a63e458d81208a9c596459a99c929c4b09 Mon Sep 17 00:00:00 2001 From: maxb-io <105273783+maxb-io@users.noreply.github.com> Date: Mon, 31 Jul 2023 12:12:38 +0300 Subject: [PATCH 4/5] sanity-check, avoiding use of docker container --- .github/workflows/sanity_check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sanity_check.yml b/.github/workflows/sanity_check.yml index b50e6eb9d8..4d425fb7cc 100644 --- a/.github/workflows/sanity_check.yml +++ b/.github/workflows/sanity_check.yml @@ -13,7 +13,7 @@ jobs: steps: - name: pre - run: apt update && apt install -y sudo git make clang build-essential clang-format wget + run: sudo apt update && apt install -y sudo git make clang build-essential clang-format wget - name: Checkout feature branch uses: actions/checkout@v2 @@ -36,10 +36,10 @@ jobs: architecture: 'x64' - name: Install Dependencies - run: python -m pip install --upgrade pip + run: sudo python -m pip install --upgrade pip - name: Install argparse - run: pip install argparse + run: sudo pip install argparse - name: Download clang-format-diff.py run: | From 63ac3891db73134d5ed46e0457779278f356e8f3 Mon Sep 17 00:00:00 2001 From: maxb-io <105273783+maxb-io@users.noreply.github.com> Date: Mon, 31 Jul 2023 12:15:12 +0300 Subject: [PATCH 5/5] sanity-check, avoiding use of docker container --- .github/workflows/sanity_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sanity_check.yml b/.github/workflows/sanity_check.yml index 4d425fb7cc..5351a5b8fc 100644 --- a/.github/workflows/sanity_check.yml +++ b/.github/workflows/sanity_check.yml @@ -13,7 +13,7 @@ jobs: steps: - name: pre - run: sudo apt update && apt install -y sudo git make clang build-essential clang-format wget + run: sudo apt update && sudo apt install -y git make clang build-essential clang-format wget - name: Checkout feature branch uses: actions/checkout@v2