Files
intel-graphics-compiler/.github/workflows/build-IGC.yml
Marcin Naczk 4546aabbb1 Remove build with LLVM12 from Github Action
Remove build with LLVM12 from Github Action
2021-11-23 14:46:39 +01:00

27 lines
684 B
YAML

#
# Copyright (C) 2021 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
name: Build IGC
on:
push:
branches: [ master ]
jobs:
build:
if: github.repository == 'intel/intel-graphics-compiler'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ ubuntu1804, ubuntu2004 ]
llvm_ver: [ 10, 11 ]
compiler: [ gcc, clang ]
steps:
- uses: actions/checkout@v2
- name: Run Script Selectiong Docker
run: docker build -f scripts/Dockerfile-${{ matrix.os }} --build-arg BUILD_OS=${{ matrix.os }} --build-arg LLVM_VERSION=${{ matrix.llvm_ver }} --build-arg COMPILER=${{ matrix.compiler }} ./scripts