commit c4dd3a43356ff05042ea0f299615137ad03c1ae4 Author: esh <1+esh@noreply.scihub.exe.xyz> Date: Thu Jun 25 07:13:02 2026 +0000 smoke: CPU + GPU runner test diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml new file mode 100644 index 0000000..7bcaf7b --- /dev/null +++ b/.gitea/workflows/smoke.yml @@ -0,0 +1,13 @@ +name: smoke +on: [push] +jobs: + cpu: + runs-on: ubuntu-22.04 + steps: + - run: echo "CPU job on arch=$(uname -m) host=$(hostname)" + - run: head -2 /etc/os-release + gpu: + runs-on: gpu + steps: + - run: echo "GPU job on $(hostname)" + - run: nvidia-smi