-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b7db91
commit c5049cb
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Archlinux | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
build-linux: | ||
name: build-linux | ||
runs-on: archlinux:latest | ||
steps: | ||
# - name: setup | ||
# run: | | ||
# sudo apt-get update | ||
# sudo apt-get install -y mesa-utils xvfb xorg-dev libglu1-mesa-dev glslang-dev glslang-tools | ||
# #xvfb-run glxinfo | ||
- uses: actions/checkout@v3 | ||
- name: set up engine dependencies | ||
run: | | ||
git submodule init | ||
git submodule update | ||
#cd thirdparty/glew | ||
#make extensions | ||
# - name: build | ||
# run: | | ||
# mkdir build | ||
# cmake -DBUILD_SAMPLES=OFF -DBUILD_TESTS=ON -DOPENGL_SHADER_OUTPUT=ON -S . -B build | ||
# cd build | ||
# make | ||
# - name: test | ||
# continue-on-error: true | ||
# run: | | ||
# cd build/tests | ||
# mkdir glslang | ||
# xvfb-run -a -e errors ./limitless-tests | ||
# cat errors | ||
# - name: shader glslang validation | ||
# run: | | ||
# cd build/tests | ||
# cd glslang | ||
# for file in ./*; do glslangValidator -C "$file"; done |