PR Artifacts Smoke Test #6733
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |