Update .gitea/workflows/ci.yml
All checks were successful
Test runner / hello-from-ubuntu-24.04 (push) Successful in 1s
Test runner / hello-from-ubuntu-22.04 (push) Successful in 5s
Test runner / hello-from-ubuntu-20.04 (push) Successful in 6s

testing the different docker images
This commit is contained in:
Aaron Honeycutt 2025-12-10 14:40:39 -07:00
parent 1d6e7ba4b9
commit 8cffebaa86

View file

@ -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
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