Skip to content

Commit

Permalink
add glfw build script for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
luc committed Jan 21, 2024
1 parent 7d52d2a commit c457a69
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-dep-glfw.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build glfw

on:
workflow_dispatch:
push:
branches:
- build-workflow

jobs:
build-linux:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3

- name: Run build script
working-directory: ${{ github.workspace }}/externals/prebuild_scripts/
run: ./build_glfw_for_linux.sh 3.3.2

- name: Archive prebuilt glfw
uses: actions/upload-artifact@v3
with:
name: prebuilt-glfw-linux
path: ${{ github.workspace }}/externals/prebuilt/linux_glfw_3.3.2



0 comments on commit c457a69

Please sign in to comment.