Remove runner tags - single runner, no tag filtering needed

This commit is contained in:
root
2026-03-07 00:38:42 +01:00
parent 7181a6dacd
commit 2e934efebb
-8
View File
@@ -24,8 +24,6 @@ shellcheck:
- echo "Running ShellCheck on all .sh files..." - echo "Running ShellCheck on all .sh files..."
- find . -name "*.sh" -not -path "./.git/*" -print0 | - find . -name "*.sh" -not -path "./.git/*" -print0 |
xargs -0 -r shellcheck --severity="$SHELLCHECK_SEVERITY" --format=tty xargs -0 -r shellcheck --severity="$SHELLCHECK_SEVERITY" --format=tty
tags:
- docker
bash-syntax: bash-syntax:
stage: lint stage: lint
@@ -44,8 +42,6 @@ bash-syntax:
exit 1 exit 1
fi fi
echo "All scripts pass syntax check" echo "All scripts pass syntax check"
tags:
- docker
# ───────────────────────────────────────────── # ─────────────────────────────────────────────
# Test Stage — Ubuntu # Test Stage — Ubuntu
@@ -68,8 +64,6 @@ test-ubuntu:
- echo "" - echo ""
- echo "--- networktuning.sh --dry-run ---" - echo "--- networktuning.sh --dry-run ---"
- bash networktuning.sh --dry-run 2>&1 || true - bash networktuning.sh --dry-run 2>&1 || true
tags:
- docker
# ───────────────────────────────────────────── # ─────────────────────────────────────────────
# Test Stage — RHEL # Test Stage — RHEL
@@ -91,5 +85,3 @@ test-rhel:
- echo "" - echo ""
- echo "--- networktuning.sh --dry-run ---" - echo "--- networktuning.sh --dry-run ---"
- bash networktuning.sh --dry-run 2>&1 || true - bash networktuning.sh --dry-run 2>&1 || true
tags:
- docker