Skip to content
Latchkey

Actions CI workflow (airbnb/streamalert)

The Actions CI workflow from airbnb/streamalert, explained and optimized by Latchkey.

C

CI health: C - fair

The optimized version below adds run de-duplication, job timeouts.

Source: airbnb/streamalert.github/workflows/ci.ymlLicense Apache-2.0View source

What it does

This is the Actions CI workflow from the airbnb/streamalert repository, a real project running GitHub Actions. It is shown here with attribution under its Apache-2.0 license.

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

The workflow

workflow (.yml)
name: Actions CI
on:
  pull_request: {}
  push:
    branches:
      - master
      - release-3-2-0
    tags:
      - 'v*.*.*'

jobs:
  testing:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python:
          - 3.7
        task:
          - name: Lint
            command: |
              ./tests/scripts/pylint.sh
          - name: Test
            command: |
              ./tests/scripts/unit_tests.sh
              ./manage.py test rules
              ./manage.py test classifier
          - name: Docs
            command: |
              sphinx-build -W docs/source docs/build
          - name: Bandit
            command: |
              bandit --ini setup.cfg -r .
    name: "Python ${{ matrix.python }}/${{ matrix.task.name }}"
    steps:
      - uses: "actions/checkout@v2"
      - uses: "actions/setup-python@v1"
        with:
          python-version: ${{ matrix.python }}
      - name: Install requirements
        run: pip install -r requirements.txt
      - name: ${{ matrix.task.name }}
        run: ${{ matrix.task.command }}
      - name: Submit Coverage
        run: ([ -z "$COVERALLS_REPO_TOKEN" ] && echo "coveralls is skipped in forked repo tests" || coveralls)
        if: matrix.task.name == 'Test'
        env:
          COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

The same workflow, on Latchkey

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

name: Actions CIon:  pull_request: {}  push:    branches:      - master      - release-3-2-0    tags:      - 'v*.*.*' concurrency:  group: ${{ github.workflow }}-${{ github.ref }}  cancel-in-progress: true jobs:  testing:    timeout-minutes: 30    runs-on: latchkey-small    strategy:      matrix:        python:          - 3.7        task:          - name: Lint            command: |              ./tests/scripts/pylint.sh          - name: Test            command: |              ./tests/scripts/unit_tests.sh              ./manage.py test rules              ./manage.py test classifier          - name: Docs            command: |              sphinx-build -W docs/source docs/build          - name: Bandit            command: |              bandit --ini setup.cfg -r .    name: "Python ${{ matrix.python }}/${{ matrix.task.name }}"    steps:      - uses: "actions/checkout@v2"      - uses: "actions/setup-python@v1"        with:          python-version: ${{ matrix.python }}      - name: Install requirements        run: pip install -r requirements.txt      - name: ${{ matrix.task.name }}        run: ${{ matrix.task.command }}      - name: Submit Coverage        run: ([ -z "$COVERALLS_REPO_TOKEN" ] && echo "coveralls is skipped in forked repo tests" || coveralls)        if: matrix.task.name == 'Test'        env:          COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} 

What changed

  • Run on Latchkey managed runners with one line (runs-on), which apply the fixes below automatically and self-heal transient failures. This example uses latchkey-small; pick the runner size that fits the job.
  • Cancel superseded runs when a branch or PR gets a newer push.
  • Add a job timeout so a hung step cannot burn hours of runner time.

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:

  • Dependency installs

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

Frequently asked questions

What does the Actions CI workflow (airbnb/streamalert) workflow do?
This is the Actions CI workflow from the airbnb/streamalert repository, a real project running GitHub Actions. It is shown here with attribution under its Apache-2.0 license.
What CI health grade does this workflow get?
This Automation and other workflow grades C. Paste your own workflow into the Latchkey grader to see its grade and the exact fixes.
How can I improve this Automation and other workflow?
Apply run de-duplication, job timeouts. Latchkey applies these automatically on managed runners when you point runs-on at Latchkey.

References