Skip to content

PR Artifacts Smoke Test #6733

PR Artifacts Smoke Test

PR Artifacts Smoke Test #6733

Workflow file for this run

name: PR Artifacts
run-name: PR Artifacts Smoke Test
on:
workflow_dispatch:
jobs:
smoke-test:
timeout-minutes: 30
runs-on: ubuntu-latest-8core
steps:
- name: Show runner details
run: |
set -euxo pipefail
echo "runner_name=${RUNNER_NAME}"
echo "runner_os=${RUNNER_OS}"
echo "runner_arch=${RUNNER_ARCH}"
uname -a
nproc
free -h || true
df -h
- name: Simple shell check
run: |
set -euxo pipefail
echo "smoke test start"
sleep 10
echo "smoke test done"