From 860cd4d081ebf300aa62f0ee4385434b9de57538 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 3 May 2025 23:17:47 +0100 Subject: [PATCH 01/12] Update workflows to support self-hosted runners --- .github/workflows/docs-and-testcov.yml | 4 +++- .github/workflows/run-unit-tests.yml | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-and-testcov.yml b/.github/workflows/docs-and-testcov.yml index 2307ec2..917259b 100644 --- a/.github/workflows/docs-and-testcov.yml +++ b/.github/workflows/docs-and-testcov.yml @@ -18,7 +18,9 @@ permissions: jobs: docs-and-testcov: - runs-on: ubuntu-latest + # runs-on: ubuntu-latest + runs-on: [self-hosted, ubuntu-latest] + steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 2811fca..87512a0 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -14,7 +14,8 @@ jobs: run-unit-tests: if: github.event.pull_request.draft == false name: run-unit-tests - runs-on: ubuntu-latest + # runs-on: ubuntu-latest + runs-on: [self-hosted, ubuntu-latest] env: CARGO_TERM_COLOR: always From f084eae72cd6dc7e51391ee2475e08f193f0c9a0 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 3 May 2025 23:53:23 +0100 Subject: [PATCH 02/12] Add Docker setup files for ARM GitHub Actions self-hosted runner --- .github/runner-arm/Dockerfile | 30 +++++++++++++++++++++++++++ .github/runner-arm/docker-compose.yml | 18 ++++++++++++++++ .github/runner-arm/entrypoint.sh | 24 +++++++++++++++++++++ .github/runner-arm/example.env | 9 ++++++++ .github/runner-arm/start.sh | 4 ++++ 5 files changed, 85 insertions(+) create mode 100644 .github/runner-arm/Dockerfile create mode 100644 .github/runner-arm/docker-compose.yml create mode 100644 .github/runner-arm/entrypoint.sh create mode 100644 .github/runner-arm/example.env create mode 100644 .github/runner-arm/start.sh diff --git a/.github/runner-arm/Dockerfile b/.github/runner-arm/Dockerfile new file mode 100644 index 0000000..741114e --- /dev/null +++ b/.github/runner-arm/Dockerfile @@ -0,0 +1,30 @@ +FROM ubuntu:latest + +ARG RUNNER_VERSION="2.323.0" + +# Prevents installdependencies.sh from prompting the user and blocking the image creation +ARG DEBIAN_FRONTEND=noninteractive + +RUN apt update -y && apt upgrade -y && useradd -m docker +RUN apt install -y --no-install-recommends \ + curl jq build-essential libssl-dev libffi-dev python3 python3-venv python3-dev python3-pip \ + # dot net core dependencies + libicu74 libssl3 libkrb5-3 zlib1g libcurl4 + + +RUN cd /home/docker && mkdir actions-runner && cd actions-runner \ + && curl -O -L https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-linux-arm64-${RUNNER_VERSION}.tar.gz \ + && tar xzf ./actions-runner-linux-arm64-${RUNNER_VERSION}.tar.gz + +RUN chown -R docker ~docker && /home/docker/actions-runner/bin/installdependencies.sh + +COPY entrypoint.sh entrypoint.sh + +# make the script executable +RUN chmod +x entrypoint.sh + +# since the config and run script for actions are not allowed to be run by root, +# set the user to "docker" so all subsequent commands are run as the docker user +USER docker + +ENTRYPOINT ["./entrypoint.sh"] \ No newline at end of file diff --git a/.github/runner-arm/docker-compose.yml b/.github/runner-arm/docker-compose.yml new file mode 100644 index 0000000..3ecee8e --- /dev/null +++ b/.github/runner-arm/docker-compose.yml @@ -0,0 +1,18 @@ +# docker-compose.yml + +services: + github-runner: + build: + context: . + args: + RUNNER_VERSION: 2.323.0 + # container_name commented to allow for multiple runners + # container_name: github-runner + env_file: + - .env + volumes: + - runner-work:/home/runner/actions-runner/_work + restart: unless-stopped + +volumes: + runner-work: diff --git a/.github/runner-arm/entrypoint.sh b/.github/runner-arm/entrypoint.sh new file mode 100644 index 0000000..97e8609 --- /dev/null +++ b/.github/runner-arm/entrypoint.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +REPOSITORY=$REPO +ACCESS_TOKEN=$GH_TOKEN +LABELS=$RUNNER_LABELS + +# echo "REPO ${REPOSITORY}" +# echo "ACCESS_TOKEN ${ACCESS_TOKEN}" + +REG_TOKEN=$(curl -X POST -H "Authorization: token ${ACCESS_TOKEN}" -H "Accept: application/vnd.github+json" https://api.github.com/repos/${REPOSITORY}/actions/runners/registration-token | jq .token --raw-output) + +cd /home/docker/actions-runner + +./config.sh --url https://github.com/${REPOSITORY} --token ${REG_TOKEN} --labels ${LABELS} + +cleanup() { + echo "Removing runner..." + ./config.sh remove --unattended --token ${REG_TOKEN} +} + +trap 'cleanup; exit 130' INT +trap 'cleanup; exit 143' TERM + +./run.sh & wait $! \ No newline at end of file diff --git a/.github/runner-arm/example.env b/.github/runner-arm/example.env new file mode 100644 index 0000000..6ab2dc8 --- /dev/null +++ b/.github/runner-arm/example.env @@ -0,0 +1,9 @@ + +# Repository name +REPO="Magnus167/rustframe" + +# GitHub runner token +GH_TOKEN="some_token_here" + +# Labels for the runner +RUNNER_LABELS=self-hosted-linux,linux \ No newline at end of file diff --git a/.github/runner-arm/start.sh b/.github/runner-arm/start.sh new file mode 100644 index 0000000..891f4d4 --- /dev/null +++ b/.github/runner-arm/start.sh @@ -0,0 +1,4 @@ + + +docker compose up -d --build +# docker compose up -d --build --scale github-runner=2 From d15aaf437fa194e9ec846746cc5fb507dce5201b Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:28:58 +0100 Subject: [PATCH 03/12] Add runner fallback action to select self-hosted or fallback GitHub-hosted runners --- .github/actions/runner-fallback/action.yml | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .github/actions/runner-fallback/action.yml diff --git a/.github/actions/runner-fallback/action.yml b/.github/actions/runner-fallback/action.yml new file mode 100644 index 0000000..0dcb1a2 --- /dev/null +++ b/.github/actions/runner-fallback/action.yml @@ -0,0 +1,61 @@ +# actions/runner-fallback/action.yml +name: "Runner Fallback" +description: | + Chooses a self-hosted runner when one with the required labels is online, + otherwise returns a fallback GitHub-hosted label. +inputs: + primary-runner: + description: 'Comma-separated label list for the preferred self-hosted runner (e.g. "self-hosted,linux")' + required: true + fallback-runner: + description: 'Comma-separated label list or single label for the fallback (e.g. "ubuntu-latest")' + required: true + github-token: + description: "PAT or ${{ secrets.GITHUB_TOKEN }} with `repo` scope" + required: true + +outputs: + use-runner: + description: "JSON array of labels you can feed straight into runs-on" + value: ${{ steps.pick.outputs.use-runner }} + +runs: + using: "composite" + steps: + - name: Check self-hosted fleet + id: pick + shell: bash + env: + TOKEN: ${{ inputs.github-token }} + PRIMARY: ${{ inputs.primary-runner }} + FALLBACK: ${{ inputs.fallback-runner }} + run: | + # -------- helper ----------- + to_json_array () { + local list="$1"; IFS=',' read -ra L <<<"$list" + printf '['; printf '"%s",' "${L[@]}"; printf ']' + } + # -------- query API --------- + repo="${{ github.repository }}" + runners=$(curl -s -H "Authorization: Bearer $TOKEN" \ + -H "Accept: application/vnd.github+json" \ + "https://api.github.com/repos/$repo/actions/runners?per_page=100") + # Split wanted labels + IFS=',' read -ra WANT <<<"$PRIMARY" + online_found=0 + while read -r row; do + labels=$(jq -r '.labels[].name' <<<"$row") + ok=1 + for w in "${WANT[@]}"; do + grep -Fxq "$w" <<<"$labels" || { ok=0; break; } + done + [ "$ok" -eq 1 ] && { online_found=1; break; } + done < <(jq -c '.runners[] | select(.status=="online")' <<<"$runners") + + if [ "$online_found" -eq 1 ]; then + echo "✅ Self-hosted runner online." + echo "use-runner=$(to_json_array "$PRIMARY")" >>"$GITHUB_OUTPUT" + else + echo "❌ No matching self-hosted runner online - using fallback." + echo "use-runner=$(to_json_array "$FALLBACK")" >>"$GITHUB_OUTPUT" + fi From 6076e0c8e36ef6ef32e1f6b1679929e7e8416018 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:29:06 +0100 Subject: [PATCH 04/12] Implement runner fallback mechanism for docs and unit test workflows --- .github/workflows/docs-and-testcov.yml | 49 +++++++++++++++----------- .github/workflows/run-unit-tests.yml | 16 +++++++-- 2 files changed, 43 insertions(+), 22 deletions(-) diff --git a/.github/workflows/docs-and-testcov.yml b/.github/workflows/docs-and-testcov.yml index 917259b..2929b6c 100644 --- a/.github/workflows/docs-and-testcov.yml +++ b/.github/workflows/docs-and-testcov.yml @@ -17,10 +17,21 @@ permissions: pages: write jobs: - docs-and-testcov: - # runs-on: ubuntu-latest - runs-on: [self-hosted, ubuntu-latest] + pick-runner: + runs-on: ubuntu-latest + outputs: + runner: ${{ steps.choose.outputs.use-runner }} + steps: + - id: choose + uses: ./.github/actions/runner-fallback@v1 # or your-org/runner-fallback@v1 + with: + primary-runner: "self-hosted,ubuntu-latest" + fallback-runner: "ubuntu-latest" + github-token: ${{ secrets.GITHUB_TOKEN }} + docs-and-testcov: + needs: pick-runner + runs-on: ${{ fromJson(needs.pick-runner.outputs.runner) }} steps: - uses: actions/checkout@v4 @@ -30,10 +41,10 @@ jobs: with: toolchain: stable override: true - + - name: Build documentation run: cargo doc --no-deps --release - + - name: Prepare documentation for Pages run: | @@ -47,28 +58,26 @@ jobs: run: | mkdir -p testcov cargo tarpaulin --engine llvm --out Html --out Json - + - name: Check for tarpaulin-report.html run: | if [ ! -f tarpaulin-report.html ]; then echo "tarpaulin-report.html not found!" exit 1 fi - + - name: Export tarpaulin coverage badge JSON + # extract raw coverage and round to 2 decimal places run: | - # extract raw coverage - coverage=$(jq '.coverage' tarpaulin-report.json) - # round to 2 decimal places - formatted=$(printf "%.2f" "$coverage") - # build the badge JSON using the pre-formatted string - jq --arg message "$formatted" \ - '{schemaVersion:1, - label:"tarpaulin-report", - message:$message, - color:"blue"}' \ - tarpaulin-report.json \ - > tarpaulin-badge.json + coverage=$(jq '.coverage' tarpaulin-report.json) + formatted=$(printf "%.2f" "$coverage") + jq --arg message "$formatted" \ + '{schemaVersion:1, + label:"tarpaulin-report", + message:$message, + color:"blue"}' \ + tarpaulin-report.json \ + > tarpaulin-badge.json - name: Save last commit date JSON run: | @@ -80,7 +89,7 @@ jobs: color:"blue"}' \ <(echo '{}') \ > last-commit-date.json - + - name: Copy files to output directory run: | mkdir output diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 87512a0..0483f69 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -11,11 +11,23 @@ concurrency: cancel-in-progress: true jobs: + pick-runner: + runs-on: ubuntu-latest + outputs: + runner: ${{ steps.choose.outputs.use-runner }} + steps: + - id: choose + uses: ./.github/actions/runner-fallback@v1 + with: + primary-runner: "self-hosted,ubuntu-latest" + fallback-runner: "ubuntu-latest" + github-token: ${{ secrets.GITHUB_TOKEN }} + run-unit-tests: + needs: pick-runner if: github.event.pull_request.draft == false name: run-unit-tests - # runs-on: ubuntu-latest - runs-on: [self-hosted, ubuntu-latest] + runs-on: ${{ fromJson(needs.pick-runner.outputs.runner) }} env: CARGO_TERM_COLOR: always From aaac6bfc3b7d2075e85e7decd7dfb4ebb4bd1448 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:31:41 +0100 Subject: [PATCH 05/12] Update runner fallback action --- .github/workflows/docs-and-testcov.yml | 2 +- .github/workflows/run-unit-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-and-testcov.yml b/.github/workflows/docs-and-testcov.yml index 2929b6c..b9b5b51 100644 --- a/.github/workflows/docs-and-testcov.yml +++ b/.github/workflows/docs-and-testcov.yml @@ -23,7 +23,7 @@ jobs: runner: ${{ steps.choose.outputs.use-runner }} steps: - id: choose - uses: ./.github/actions/runner-fallback@v1 # or your-org/runner-fallback@v1 + uses: ./.github/actions/runner-fallback with: primary-runner: "self-hosted,ubuntu-latest" fallback-runner: "ubuntu-latest" diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 0483f69..e04f926 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -17,7 +17,7 @@ jobs: runner: ${{ steps.choose.outputs.use-runner }} steps: - id: choose - uses: ./.github/actions/runner-fallback@v1 + uses: ./.github/actions/runner-fallback with: primary-runner: "self-hosted,ubuntu-latest" fallback-runner: "ubuntu-latest" From b25c6d358e2cc373380dd380b0fe1c5d0a04d4f0 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:33:28 +0100 Subject: [PATCH 06/12] Add checkout step to runner selection in workflows --- .github/workflows/docs-and-testcov.yml | 2 ++ .github/workflows/run-unit-tests.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/docs-and-testcov.yml b/.github/workflows/docs-and-testcov.yml index b9b5b51..94eab46 100644 --- a/.github/workflows/docs-and-testcov.yml +++ b/.github/workflows/docs-and-testcov.yml @@ -22,6 +22,8 @@ jobs: outputs: runner: ${{ steps.choose.outputs.use-runner }} steps: + - uses: actions/checkout@v4 + - id: choose uses: ./.github/actions/runner-fallback with: diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index e04f926..d975d8a 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -16,6 +16,7 @@ jobs: outputs: runner: ${{ steps.choose.outputs.use-runner }} steps: + - uses: actions/checkout@v4 - id: choose uses: ./.github/actions/runner-fallback with: From 101ee8c1c799cb6ef277271e7b0c04aa120cdc7e Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:35:07 +0100 Subject: [PATCH 07/12] Fix description for github-token input in runner fallback action --- .github/actions/runner-fallback/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/runner-fallback/action.yml b/.github/actions/runner-fallback/action.yml index 0dcb1a2..9b320f2 100644 --- a/.github/actions/runner-fallback/action.yml +++ b/.github/actions/runner-fallback/action.yml @@ -11,7 +11,7 @@ inputs: description: 'Comma-separated label list or single label for the fallback (e.g. "ubuntu-latest")' required: true github-token: - description: "PAT or ${{ secrets.GITHUB_TOKEN }} with `repo` scope" + description: "PAT or GITHUB_TOKEN with `repo` scope" required: true outputs: From cae230783e218cdfcf42ee175ea63d70be585da1 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:39:23 +0100 Subject: [PATCH 08/12] Enhance output messages for code coverage and documentation steps in unit tests workflow --- .github/workflows/run-unit-tests.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index d975d8a..0ad6482 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -39,11 +39,13 @@ jobs: - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov - name: Generate code coverage - run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - - name: Run doc-tests - run: cargo test --doc --all-features --workspace --release - - name: Test docs generation - run: cargo doc --no-deps --release + run: | + echo "Running tests with code coverage" + cargo llvm-cov --all-features --release --workspace --lcov --output-path lcov.info + echo "Running doctests" + cargo test --doc --all-features --workspace --release + echo "Generating documentation (no-deps)" + cargo doc --no-deps --release - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: From 8ba39f8e87b842e06b264b689f4c77cc3c34f544 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:42:34 +0100 Subject: [PATCH 09/12] Reorder steps in unit tests workflow to clarify coverage generation process --- .github/workflows/run-unit-tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 0ad6482..d54568b 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -38,12 +38,13 @@ jobs: run: rustup update stable - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov - - name: Generate code coverage + + - name: Run unit tests and generate coverage run: | - echo "Running tests with code coverage" - cargo llvm-cov --all-features --release --workspace --lcov --output-path lcov.info echo "Running doctests" cargo test --doc --all-features --workspace --release + echo "Running tests with code coverage" + cargo llvm-cov --all-features --release --workspace --lcov --output-path lcov.info echo "Generating documentation (no-deps)" cargo doc --no-deps --release - name: Upload coverage to Codecov From 33d021072e5f113c9254a23b18d2029088a65622 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:47:13 +0100 Subject: [PATCH 10/12] Refactor unit test steps for clarity and organization --- .github/workflows/run-unit-tests.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index d54568b..c6e2f91 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -39,14 +39,15 @@ jobs: - name: Install cargo-llvm-cov uses: taiki-e/install-action@cargo-llvm-cov - - name: Run unit tests and generate coverage - run: | - echo "Running doctests" - cargo test --doc --all-features --workspace --release - echo "Running tests with code coverage" - cargo llvm-cov --all-features --release --workspace --lcov --output-path lcov.info - echo "Generating documentation (no-deps)" - cargo doc --no-deps --release + - name: Run doctests + run: cargo test --doc --all-features --workspace --release + + - name: Run unit tests with code coverage + run: cargo llvm-cov --all-features --release --workspace --lcov --output-path lcov.info + + - name: Test docs generation + run: cargo doc --no-deps --release + - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: From eb28b9378106764c5f91943016cfd676480cc430 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:53:19 +0100 Subject: [PATCH 11/12] reorganized GH runner setups --- .github/{ => runners}/runner-arm/Dockerfile | 0 .github/{ => runners}/runner-arm/docker-compose.yml | 0 .github/{ => runners}/runner-arm/entrypoint.sh | 0 .github/{ => runners}/runner-arm/example.env | 0 .github/{ => runners}/runner-arm/start.sh | 0 .github/{runner => runners/runner-x64}/Dockerfile | 0 .github/{runner => runners/runner-x64}/docker-compose.yml | 0 .github/{runner => runners/runner-x64}/entrypoint.sh | 0 .github/{runner => runners/runner-x64}/example.env | 0 .github/{runner => runners/runner-x64}/start.sh | 0 10 files changed, 0 insertions(+), 0 deletions(-) rename .github/{ => runners}/runner-arm/Dockerfile (100%) rename .github/{ => runners}/runner-arm/docker-compose.yml (100%) rename .github/{ => runners}/runner-arm/entrypoint.sh (100%) rename .github/{ => runners}/runner-arm/example.env (100%) rename .github/{ => runners}/runner-arm/start.sh (100%) rename .github/{runner => runners/runner-x64}/Dockerfile (100%) rename .github/{runner => runners/runner-x64}/docker-compose.yml (100%) rename .github/{runner => runners/runner-x64}/entrypoint.sh (100%) rename .github/{runner => runners/runner-x64}/example.env (100%) rename .github/{runner => runners/runner-x64}/start.sh (100%) diff --git a/.github/runner-arm/Dockerfile b/.github/runners/runner-arm/Dockerfile similarity index 100% rename from .github/runner-arm/Dockerfile rename to .github/runners/runner-arm/Dockerfile diff --git a/.github/runner-arm/docker-compose.yml b/.github/runners/runner-arm/docker-compose.yml similarity index 100% rename from .github/runner-arm/docker-compose.yml rename to .github/runners/runner-arm/docker-compose.yml diff --git a/.github/runner-arm/entrypoint.sh b/.github/runners/runner-arm/entrypoint.sh similarity index 100% rename from .github/runner-arm/entrypoint.sh rename to .github/runners/runner-arm/entrypoint.sh diff --git a/.github/runner-arm/example.env b/.github/runners/runner-arm/example.env similarity index 100% rename from .github/runner-arm/example.env rename to .github/runners/runner-arm/example.env diff --git a/.github/runner-arm/start.sh b/.github/runners/runner-arm/start.sh similarity index 100% rename from .github/runner-arm/start.sh rename to .github/runners/runner-arm/start.sh diff --git a/.github/runner/Dockerfile b/.github/runners/runner-x64/Dockerfile similarity index 100% rename from .github/runner/Dockerfile rename to .github/runners/runner-x64/Dockerfile diff --git a/.github/runner/docker-compose.yml b/.github/runners/runner-x64/docker-compose.yml similarity index 100% rename from .github/runner/docker-compose.yml rename to .github/runners/runner-x64/docker-compose.yml diff --git a/.github/runner/entrypoint.sh b/.github/runners/runner-x64/entrypoint.sh similarity index 100% rename from .github/runner/entrypoint.sh rename to .github/runners/runner-x64/entrypoint.sh diff --git a/.github/runner/example.env b/.github/runners/runner-x64/example.env similarity index 100% rename from .github/runner/example.env rename to .github/runners/runner-x64/example.env diff --git a/.github/runner/start.sh b/.github/runners/runner-x64/start.sh similarity index 100% rename from .github/runner/start.sh rename to .github/runners/runner-x64/start.sh From c7f3cc6ef9540465f9ba6b96f043789c42e842ff Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 4 May 2025 00:58:27 +0100 Subject: [PATCH 12/12] testing runners