Skip to content

win ci: add workflow to build aie components #421

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: aie-public
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/amd-aie-build-win.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: AIEngine LLVM Build - Windows

permissions:
contents: read

on:
workflow_dispatch:
push:
branches:
- 'aie-public'
pull_request:
branches:
- 'aie-public'

concurrency:
# A PR number if a pull request and otherwise the commit hash. This cancels
# queued and in-progress runs for the same PR (presubmit) or commit
# (postsubmit).
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
build:
if: github.repository_owner == 'Xilinx'
name: Build AIE
uses: ./.github/workflows/llvm-project-tests.yml
with:
build_target: "" # empty to indicate default target build
projects: clang;lld
cache-key: amd-aie
extra_cmake_args: '-C clang/cmake/caches/Peano-AIE.cmake'
os_list: '["windows-2019"]'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think windows 2019 is supported

Loading