Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 13: mapping key "run" already defined at line 12 line 14: mapping key "run" already defined at line 12 line 15: mapping key "run" already defined at line 12 line 14: mapping key "run" already defined at line 13 line 15: mapping key "run" already defined at line 13 line 15: mapping key "run" already defined at line 14
2021-02-15 20:01:33 -05:00

24 lines
780 B
YAML

name: CI
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
env:
CC: gcc-9
CXX: g++-9
steps:
- uses: actions/checkout@v2
- name: Setup Vulkan SDK
run: wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
run: sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-focal.list https://packages.lunarg.com/vulkan/lunarg-vulkan-focal.list
run: sudo apt update
run: sudo apt install vulkan-sdk
- name: Configure
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build --target all -v
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2