From 8cffebaa8650fbdb226277e2a42f73d437d85778 Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 14:40:39 -0700 Subject: [PATCH] Update .gitea/workflows/ci.yml testing the different docker images --- .gitea/workflows/ci.yml | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ba7711f..777f2f1 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,11 +5,26 @@ on: branches: [ main ] jobs: - hello: + hello-from-ubuntu-24.04: runs-on: ubuntu-24.04 steps: - name: Print host info run: | echo "Runner hostname: $(hostname)" - echo "Executor: $RUNNER_EXECUTOR" - uname -a \ No newline at end of file + apt -v + + hello-from-ubuntu-22.04: + runs-on: ubuntu-22.04 + steps: + - name: Print host info + run: | + echo "Runner hostname: $(hostname)" + apt -v + + hello-from-ubuntu-20.04: + runs-on: ubuntu-20.04 + steps: + - name: Print host info + run: | + echo "Runner hostname: $(hostname)" + apt -v \ No newline at end of file