Skip to content

Commit

Permalink
Setup OpenGL in linux action
Browse files Browse the repository at this point in the history
  • Loading branch information
magistermaks committed Jul 9, 2024
1 parent c52e23a commit ee0a5f4
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,20 @@ on:
branches: [master]

jobs:
build:
name: Build Project
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: openrndr/[email protected]

strategy:
matrix:
os: [windows-latest, ubuntu-latest]
- name: Configure
run: cmake -B ${{ github.workspace }}/build -S ${{ github.workspace }}

runs-on: ${{ matrix.os }}
- name: Build
run: cmake --build ${{ github.workspace }}/build

build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit ee0a5f4

Please sign in to comment.