SYCL Nightly Builds #863
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SYCL Nightly Builds | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 3 * * *' | |
pull_request: | |
paths: | |
- 'devops/containers/ubuntu2004_preinstalled.Dockerfile' | |
- '.github/workflows/sycl_nightly.yml' | |
jobs: | |
resolve_matrix: | |
name: Resolve Test Matrix | |
uses: ./.github/workflows/sycl_resolve_test_matrix.yml | |
with: | |
lts_config: "ocl_gen9;ocl_x64" | |
ubuntu2004_build_test: | |
if: github.repository == 'intel/llvm' | |
uses: ./.github/workflows/sycl_linux_build_and_test.yml | |
needs: resolve_matrix | |
secrets: inherit | |
with: | |
build_cache_root: "/__w/" | |
build_artifact_suffix: default | |
build_configure_extra_args: '' | |
ubuntu2004_opaque_pointers_build_test: | |
if: github.repository == 'intel/llvm' | |
uses: ./.github/workflows/sycl_linux_build_and_test.yml | |
needs: resolve_matrix | |
secrets: inherit | |
with: | |
build_cache_root: "/__w/" | |
build_cache_suffix: opaque_pointers | |
build_artifact_suffix: opaque_pointers | |
build_configure_extra_args: "--hip --cuda --enable-esimd-emulator --cmake-opt=-DDPCPP_ENABLE_OPAQUE_POINTERS=TRUE" | |
windows_default: | |
name: Windows | |
if: github.repository == 'intel/llvm' | |
uses: ./.github/workflows/sycl_windows_build_and_test.yml | |
ubuntu2004_docker_build_push: | |
if: github.repository == 'intel/llvm' | |
runs-on: ubuntu-latest | |
needs: ubuntu2004_build_test | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/download-artifact@v2 | |
with: | |
name: sycl_linux_default | |
path: devops/ | |
- name: Build and Push Container (with drivers) | |
uses: ./devops/actions/build_container | |
with: | |
push: ${{ github.event_name != 'pull_request' }} | |
file: ubuntu2004_preinstalled | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
build-args: | | |
base_image=ghcr.io/intel/llvm/ubuntu2004_intel_drivers | |
base_tag=latest | |
tags: | | |
ghcr.io/${{ github.repository }}/sycl_ubuntu2004_nightly:${{ github.sha }} | |
ghcr.io/${{ github.repository }}/sycl_ubuntu2004_nightly:latest | |
- name: Build and Push Container (no drivers) | |
uses: ./devops/actions/build_container | |
with: | |
push: ${{ github.event_name != 'pull_request' }} | |
file: ubuntu2004_preinstalled | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
build-args: | | |
base_image=ghcr.io/intel/llvm/ubuntu2004_base | |
base_tag=latest | |
tags: | | |
ghcr.io/${{ github.repository }}/sycl_ubuntu2004_nightly:no-drivers-${{ github.sha }} | |
ghcr.io/${{ github.repository }}/sycl_ubuntu2004_nightly:no-drivers |