Release Canary #574
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: Release Canary | |
| on: | |
| workflow_dispatch: | |
| workflow_run: | |
| workflows: ["Release Dev"] | |
| types: [completed] | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| macos: | |
| name: macOS Homebrew | |
| if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
| runs-on: macos-latest-xlarge | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Ensure VM driver | |
| run: | | |
| launchctl setenv OPENSHELL_DRIVERS vm | |
| - name: Install and check status | |
| run: | | |
| curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/${{ github.event.workflow_run.head_sha || github.sha }}/install.sh | sh | |
| openshell status | |
| ubuntu: | |
| name: Ubuntu Docker | |
| if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Ensure Docker | |
| run: | | |
| if ! command -v docker >/dev/null 2>&1; then | |
| sudo apt-get update | |
| sudo apt-get install -y docker.io | |
| fi | |
| sudo systemctl start docker || sudo service docker start | |
| mkdir -p "${HOME}/.config/openshell" | |
| printf 'OPENSHELL_DRIVERS=docker\n' > "${HOME}/.config/openshell/gateway.env" | |
| docker info | |
| - name: Install and check status | |
| run: | | |
| curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/${{ github.event.workflow_run.head_sha || github.sha }}/install.sh | sh | |
| openshell status | |
| fedora: | |
| name: Fedora RPM | |
| if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
| runs-on: linux-amd64-cpu8 | |
| timeout-minutes: 20 | |
| container: | |
| image: fedora:latest | |
| options: --privileged | |
| steps: | |
| - name: Ensure Podman | |
| run: | | |
| dnf install -y curl podman | |
| mkdir -p "${HOME}/.config/openshell" | |
| printf 'OPENSHELL_DRIVERS=podman\n' > "${HOME}/.config/openshell/gateway.env" | |
| podman info | |
| - name: Install and check status | |
| run: | | |
| curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/${{ github.event.workflow_run.head_sha || github.sha }}/install.sh | sh | |
| openshell status |