Runner test
This commit is contained in:
parent
0c47167bfb
commit
4617b18fe4
|
@ -0,0 +1,12 @@
|
|||
# Define the stages of your pipeline
|
||||
stages:
|
||||
- check
|
||||
|
||||
# Define a job for the check stage
|
||||
check_pipeline:
|
||||
stage: check
|
||||
image: alpine:latest # Use a lightweight Docker image
|
||||
script:
|
||||
- echo "Pipeline is running!"
|
||||
- uname -a # Print system information
|
||||
- whoami # Print current user
|
Loading…
Reference in New Issue