Skip to content

Enabling CI for AMD with new runner.. #1

Enabling CI for AMD with new runner..

Enabling CI for AMD with new runner.. #1

Workflow file for this run

name: CI build
on:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
paths:
- ".github/workflows/build.yaml"
- "integration-tests/**"
- "server/**"
- "proto/**"
- "router/**"
- "launcher/**"
- "Cargo.lock"
- "rust-toolchain.toml"
- "Dockerfile"
- "Dockerfile_amd"
- "Dockerfile_intel"
branches:
- 'main'
jobs:
version-matrix:
strategy:
# super important if you want to see all results, even if one fails
# fail-fast is true by default
fail-fast: true
matrix:
hardware: ["cuda", "rocm", "intel"]
steps:
- name: Build
id: build
uses: ./.github/workflows/build.yml # calls the one above ^
with:
hardware: ${{ matrix.hardware }}
secrets: inherit

Check failure on line 39 in .github/workflows/ci_buid.yml

View workflow run for this annotation

GitHub Actions / CI build

Invalid workflow file

The workflow is not valid. .github/workflows/ci_buid.yml (Line: 39, Col: 7): Unexpected value 'secrets' .github/workflows/ci_buid.yml (Line: 46, Col: 7): Unexpected value 'secrets'
- name: Test
if: matrix.hardware == 'cuda'
uses: ./.github/workflows/integration_tests.yml # calls the one above ^
with:
docker_image: ${{ steps.build.outputs.docker_image }}
docker_devices: ${{ steps.build.outputs.docker_devices }}
secrets: inherit