compile in actions #6
Workflow file for this run
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: CI | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- pk-actions | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 12 * * *" | ||
jobs: | ||
hello-world: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Hello World | ||
run: echo "Hello, World!" | ||
env: | ||
python_bld_ver: 3.9 | ||
ubuntu_bld: ubuntu-20.04 | ||
mac_bld: macOS-13 | ||
windows_bld: windows-2022 | ||
ubuntu_test: ubuntu-latest | ||
mac_test: macOS-latest | ||
windows_test: windows-latest | ||
jobs: | ||
bld: | ||
strategy: | ||
matrix: | ||
include: | ||
- name: linux_release_64 | ||
image: ${{ env.ubuntu_bld }} | ||
asm: "-asm" | ||
options: "-release_64" | ||
artifact_name: "libebm_ubuntu_release_64" | ||
- name: linux_debug_64 | ||
image: ${{ env.ubuntu_bld }} | ||
asm: "" | ||
options: "-debug_64" | ||
artifact_name: "libebm_ubuntu_debug_64" | ||
- name: mac_release_64 | ||
image: ${{ env.mac_bld }} | ||
asm: "-asm" | ||
options: "-release_64" | ||
artifact_name: "libebm_mac_release_64" | ||
- name: mac_debug_64 | ||
image: ${{ env.mac_bld }} | ||
asm: "" | ||
options: "-debug_64" | ||
artifact_name: "libebm_mac_debug_64" | ||
- name: mac_release_arm | ||
image: macOS-13-arm64 | ||
asm: "-asm" | ||
options: "-release_arm" | ||
artifact_name: "libebm_mac_release_arm" | ||
- name: mac_debug_arm | ||
image: macOS-13-arm64 | ||
asm: "" | ||
options: "-debug_arm" | ||
artifact_name: "libebm_mac_debug_arm" | ||
- name: win_release_64 | ||
image: ${{ env.windows_bld }} | ||
asm: "" | ||
options: "-release_64" | ||
artifact_name: "libebm_win_release_64" | ||
- name: win_debug_64 | ||
image: ${{ env.windows_bld }} | ||
asm: "" | ||
options: "-debug_64" | ||
artifact_name: "libebm_win_debug_64" | ||
runs-on: ${{ matrix.image }} | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
- name: Download CUDA installer | ||
if: startsWith(matrix.image, 'windows') | ||
run: | | ||
curl -O https://developer.download.nvidia.com/compute/cuda/11.2.2/network_installers/cuda_11.2.2_win10_network.exe | ||
- name: Build on Windows | ||
if: startsWith(matrix.image, 'windows') | ||
run: | | ||
SET PATH=%PATH%;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\ | ||
SET CudaToolkitDir=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.2 | ||
cuda_11.2.2_win10_network.exe -s nvcc_11.2 visual_studio_integration_11.2 cudart_11.2 | ||
IF ERRORLEVEL 1 ( | ||
ECHO cuda_11.2.2_win10_network.exe FAILED | ||
EXIT /B 201 | ||
) | ||
.\build.bat ${{ matrix.options }} ${{ matrix.asm }} | ||
- name: Build on Linux | ||
if: startsWith(matrix.image, 'ubuntu') | ||
run: | | ||
sudo apt --yes update | ||
sudo apt --yes install nvidia-cuda-toolkit | ||
/bin/sh ./build.sh ${{ matrix.options }} ${{ matrix.asm }} | ||
- name: Build on macOS | ||
if: startsWith(matrix.image, 'macOS') | ||
run: | | ||
/bin/sh ./build.sh ${{ matrix.options }} ${{ matrix.asm }} | ||
- name: Publish native shared library | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: ${{ matrix.artifact_name }} | ||
path: bld/lib | ||
- name: Publish assembly x64 | ||
if: ${{ matrix.asm != '' }} | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: asm-${{ matrix.artifact_name }} | ||
path: bld/asm/ |