Files
modelscope/.gitea/workflows/pure-shell-test.yml
ben 7c82ddf68b
Some checks failed
Hello World Test / hello (push) Successful in 30s
Simple DSW Build Test / check-env (push) Successful in 3s
Simple DSW Build Test / check-tools (push) Successful in 3s
Simple DSW Build Test / network-test (push) Successful in 6s
Simple DSW Build Test / build-sample (push) Successful in 1s
Simple DSW Build Test / docker-test (push) Successful in 1s
Simple DSW Build Test / stress-test (push) Successful in 3s
Build and Docker Pipeline / build-go-app (push) Failing after 2m53s
Simple DSW Build Test / report (push) Successful in 3s
Build and Docker Pipeline / build-info (push) Failing after 13m42s
Build and Docker Pipeline / build-docker (push) Has been cancelled
Build and Docker Pipeline / cleanup-and-report (push) Has been cancelled
Pure Shell Test / test (push) Has been cancelled
修复:使用正确的 runner 标签 ubuntu:host
2026-02-02 01:59:48 +00:00

19 lines
390 B
YAML

name: Pure Shell Test
on:
push:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu:host
steps:
- run: echo "Step 1 - Hello from Runner"
- run: echo "Step 2 - Current dir is $(pwd)"
- run: echo "Step 3 - User is $(whoami)"
- run: echo "Step 4 - Time is $(date)"
- run: |
echo "Step 5 - System info"
uname -a