Skip to content
Latchkey

Install RamaLama workflow (containers/ramalama)

The Install RamaLama workflow from containers/ramalama, explained and optimized by Latchkey.

C

CI health: C - fair

Run this on Latchkey for self-healing, caching, and up to 58% lower cost.

Grade your own workflow free or run it on Latchkey →
Source: containers/ramalama.github/workflows/install_ramalama.ymlLicense MITView source

What it does

This is the Install RamaLama workflow from the containers/ramalama repository, a real project running GitHub Actions. It is shown here with attribution under its MIT license.

Below, Latchkey shows a faster, safer version produced by its optimization engine.

The workflow

workflow (.yml)
name: Install RamaLama

on:
  push:
  pull_request:
    branches:
      - main

jobs:
  install_ramalama:
    if: |
      github.event_name == 'pull_request' ||
      github.ref == 'refs/heads/main' ||
      github.repository_owner != 'containers'
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest]  # Runs on Ubuntu and macOS

    runs-on: ${{ matrix.os }}

    steps:
      - name: Checkout Repository
        uses: actions/checkout@v7

      - name: Set Up Dependencies (Ubuntu)
        timeout-minutes: 20
        if: matrix.os == 'ubuntu-latest'
        run: |
          sudo apt-get install -y lshw curl

      - name: Set Up Dependencies (macOS)
        if: matrix.os == 'macos-latest'
        run: |
          if ! command -v brew &> /dev/null; then
            echo "Homebrew is required but not found. Please install it."
            exit 1
          fi

      - name: Run RamaLama Installer
        run: |
          chmod +x install.sh
          ./install.sh -l

      - name: Verify RamaLama installation
        run: |
          ramalama ls | grep NAME

      - name: RamaLama info
        run: |
          ramalama info

      - name: RamaLama pull
        env:
          HF_TOKEN: ${{ secrets.HF_TOKEN }}
        run: |
          ramalama pull tinyllama

The same workflow, on Latchkey

Removes redundant runs and caps runaway jobs. Added and changed lines are highlighted.

name: Install RamaLama
 
on:
  push:
  pull_request:
    branches:
      - main
 
concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true
 
jobs:
  install_ramalama:
    timeout-minutes: 30
    if: |
      github.event_name == 'pull_request' ||
      github.ref == 'refs/heads/main' ||
      github.repository_owner != 'containers'
    strategy:
      matrix:
        os: [ubuntu-latest, macos-latest]  # Runs on Ubuntu and macOS
 
    runs-on: ${{ matrix.os }}
 
    steps:
      - name: Checkout Repository
        uses: actions/checkout@v7
 
      - name: Set Up Dependencies (Ubuntu)
        timeout-minutes: 20
        if: matrix.os == 'ubuntu-latest'
        run: |
          sudo apt-get install -y lshw curl
 
      - name: Set Up Dependencies (macOS)
        if: matrix.os == 'macos-latest'
        run: |
          if ! command -v brew &> /dev/null; then
            echo "Homebrew is required but not found. Please install it."
            exit 1
          fi
 
      - name: Run RamaLama Installer
        run: |
          chmod +x install.sh
          ./install.sh -l
 
      - name: Verify RamaLama installation
        run: |
          ramalama ls | grep NAME
 
      - name: RamaLama info
        run: |
          ramalama info
 
      - name: RamaLama pull
        env:
          HF_TOKEN: ${{ secrets.HF_TOKEN }}
        run: |
          ramalama pull tinyllama
 

What changed

What Latchkey heals here

This workflow has steps that commonly fail on transient issues (network, registries, flaky browsers). On Latchkey managed runners they are detected, retried, and self-healed instead of failing your build:

This workflow runs 1 job (2 with the matrix expanded) per trigger. On Latchkey the same minutes cost up to 58% less than GitHub-hosted, with zero queue time.

Actions used in this workflow