Oops (#3407) #2
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: Test - Hosted | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| trigger-sha: | ||
| description: 'SHA to test (optional)' | ||
| required: false | ||
| type: string | ||
| default: 'HEAD' | ||
| jobs: | ||
| explore-linux: | ||
| runs-on: linux-x86-n2-16 | ||
| container: | ||
| image: us-docker.pkg.dev/ml-oss-artifacts-published/ml-public-container/ml-build:latest | ||
| steps: | ||
| - name: Check Runner | ||
| run: echo "🎉 Linux Job: Running inside the container!" | ||
| - name: Verify OS | ||
| run: cat /etc/os-release | ||
| explore-windows: | ||
| runs-on: windows-x86-n2-16 | ||
| steps: | ||
| - name: Check Runner | ||
| run: echo "🎉 Windows Job: Running directly on the VM!" | ||
| - name: Verify OS | ||
| run: | | ||
| Get-CimInstance Win32_OperatingSystem | Select-Object Caption, Version | ||