Skip to content

build_windows_online_scheduled #1576

build_windows_online_scheduled

build_windows_online_scheduled #1576

# SPDX-FileCopyrightText: 2020 Intel Corporation
#
# SPDX-License-Identifier: MIT
name: build_windows_online_scheduled
on:
push: {}
workflow_dispatch: {}
schedule:
- cron: '0 0 * * *'
env:
WINDOWS_BASEKIT_URL: https://registrationcenter-download.intel.com/akdlm/IRC_NAS/f96c71db-2c6c-45d9-8c1f-0348ef5885cf/w_BaseKit_p_2023.2.0.49396.exe
WINDOWS_HPCKIT_URL: https://registrationcenter-download.intel.com/akdlm/IRC_NAS/438527fc-7140-422c-a851-389f2791816b/w_HPCKit_p_2023.2.0.49441.exe
WINDOWS_IOTKIT_URL: https://registrationcenter-download.intel.com/akdlm/IRC_NAS/dbdf4222-ff39-4c53-9b1a-23585f9a5e25/w_IoTKit_p_2023.2.0.49274.exe
WINDOWS_RENDERKIT_URL: https://registrationcenter-download.intel.com/akdlm/IRC_NAS/b80ac7cd-0ef8-45b3-ad1f-2e8504113c34/w_RenderKit_p_2023.2.0.49368.exe
SAMPLES_TAG: 2023.2.0
jobs:
build_windows_basekit:
runs-on: windows-latest
timeout-minutes: 90
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- name: tracert
run: tracert -h 1 installer.repos.intel.com
- name: install_basekit
run: scripts/install_windows.bat $WINDOWS_BASEKIT_URL
- name: build_dpc++
run: scripts/build_windows.bat dpc++ 2022 $SAMPLES_TAG
# Delete the following if you don't want to save install logs
- name: Saving install logs
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: InstallLogs_${{ github.job }}
path: |
extract.log
bootstrapper*
installer*
retention-days: 7
build_windows_hpckit:
runs-on: windows-latest
timeout-minutes: 90
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- name: tracert
run: tracert -h 1 installer.repos.intel.com
- name: install_hpckit
run: scripts/install_windows.bat $WINDOWS_HPCKIT_URL
- name: build_c++
run: scripts/build_windows.bat c++ 2022 $SAMPLES_TAG
- name: build_fortran
run: scripts/build_windows.bat fortran 2022 $SAMPLES_TAG
# Delete the following if you don't want to save install logs
- name: Saving install logs
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: InstallLogs_${{ github.job }}
path: |
extract.log
bootstrapper*
installer*
retention-days: 7
build_windows_iotkit:
runs-on: windows-latest
timeout-minutes: 90
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- name: tracert
run: tracert -h 1 installer.repos.intel.com
- name: install_iotkit
run: scripts/install_windows.bat $WINDOWS_IOTKIT_URL
- name: build_c++
run: scripts/build_windows.bat c++ 2022 $SAMPLES_TAG
# Delete the following if you don't want to save install logs
- name: Saving install logs
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: InstallLogs_${{ github.job }}
path: |
extract.log
bootstrapper*
installer*
retention-days: 7
build_windows_renderkit:
runs-on: windows-latest
timeout-minutes: 90
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- name: tracert
run: tracert -h 1 installer.repos.intel.com
- name: install_renderkit
run: scripts/install_windows.bat $WINDOWS_RENDERKIT_URL
# Delete the following if you don't want to save install logs
- name: Saving install logs
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: InstallLogs_${{ github.job }}
path: |
extract.log
bootstrapper*
installer*
retention-days: 7