Skip to content

Commit

Permalink
Create linux-x86_64.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizhangNV authored Feb 7, 2024
1 parent a7f71b6 commit 8861fc9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflow/linux-x86_64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: C/C++ CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: configure
run: cmake --preset linux-gcc
- name: make
run: cmake --build build/linux-gcc
- name: run test
run: _GL_SHADER_DISK_CACHE=0 ./build/linux-gcc/bin/Debug/falcor_perftest

0 comments on commit 8861fc9

Please sign in to comment.