Skip to content

Merge branch 'main' of https://github.com/AnswerDotAI/gpu.cpp #187

Merge branch 'main' of https://github.com/AnswerDotAI/gpu.cpp

Merge branch 'main' of https://github.com/AnswerDotAI/gpu.cpp #187

Workflow file for this run

name: gpucpp-ci
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, labeled, unlabeled, synchronize]
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: No-op Step
run: echo "This is a no-op action"
- name: Install CMake
run: sudo apt-get install cmake
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libvulkan1 mesa-vulkan-drivers vulkan-tools
sudo apt-get install -y libxrandr-dev
- name: Build
run: make all
- name: Run hello world
run: make