Skip to content

Commit

Permalink
chore: fix semver checks in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-q committed Feb 5, 2025
1 parent d6b8681 commit ccfbe8d
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/semver-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
branches:
- main

env:
LLVM_VERSION: "14.0"

jobs:
# Check if changes were made to the relevant files.
# Always returns true if running on the default branch, to ensure all changes are throughly checked.
Expand Down Expand Up @@ -42,8 +45,14 @@ jobs:
rs-semver-checks:
needs: [changes]
if: ${{ needs.changes.outputs.rust == 'true' }}
uses: CQCL/hugrverse-actions/.github/workflows/rs-semver-checks.yml@main
with:
apt-dependencies: llvm-14 capnproto
steps:
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: ${{ env.LLVM_VERSION }}
- uses: CQCL/hugrverse-actions/.github/workflows/rs-semver-checks.yml@main
with:
apt-dependencies: capnproto

secrets:
GITHUB_PAT: ${{ secrets.HUGRBOT_PAT }}

0 comments on commit ccfbe8d

Please sign in to comment.