Skip to content

fix(s390x): install zeromq-devel from rhelai-3.0 for pyzmq builds #1573

fix(s390x): install zeromq-devel from rhelai-3.0 for pyzmq builds

fix(s390x): install zeromq-devel from rhelai-3.0 for pyzmq builds #1573

Workflow file for this run

---
name: CodeQL
"on":
push:
branches:
- main
- stable
- 'rhoai-*'
pull_request:
schedule:
- cron: '0 3 * * 1'
workflow_dispatch:
concurrency:
group: codeql-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
analyze:
name: CodeQL (${{ matrix.language }})
runs-on: ubuntu-26.04
permissions:
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [python, go]
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Go
if: matrix.language == 'go'
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: scripts/buildinputs/go.mod
cache-dependency-path: scripts/buildinputs/go.mod
- name: Initialize CodeQL
uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
with:
languages: ${{ matrix.language }}
- name: Autobuild
if: matrix.language != 'go'
uses: github/codeql-action/autobuild@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
- name: Build Go
if: matrix.language == 'go'
run: |
cd scripts/buildinputs
go build ./...
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
with:
category: "/language:${{ matrix.language }}"