Update .gitea/workflows/ci.yml
testing the different docker images
This commit is contained in:
parent
1d6e7ba4b9
commit
8cffebaa86
1 changed files with 18 additions and 3 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue