Skip to content

ci: upload artifacts to github #65

ci: upload artifacts to github

ci: upload artifacts to github #65

Workflow file for this run

name: normal-build
on:
push:
jobs:
windows-debug:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure
run: cmake -S . -B build -DAW_ENABLE_GRAPHICS:BOOL=OFF
- name: Build
run: cmake --build build
- name: Test
run: ctest --test-dir build -C Debug --output-on-failure
ubuntu-debug:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure
run: cmake -S . -B build -DCMAKE_INSTALL_PREFIX=install -DAW_ENABLE_GRAPHICS:BOOL=OFF -DAW_ENABLE_ASSERT:BOOL=OFF
- name: Build
run: cmake --build build
- name: Test
run: ctest --test-dir build --output-on-failure
- name: Install
run: cmake --install build
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: bin-ubuntu
path: install/*