sky shader: rather use noise textures for noise lookups instead of co… #2157
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
name: CI Windows/MINGW | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
defaults: | |
run: | |
shell: msys2 {0} | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: >- | |
base-devel | |
git | |
make | |
mingw-w64-x86_64-gcc | |
mingw-w64-x86_64-openal | |
mingw-w64-x86_64-glfw | |
mingw-w64-x86_64-glew | |
mingw-w64-x86_64-dlfcn | |
mingw-w64-x86_64-freetype | |
mingw-w64-x86_64-vulkan-headers | |
mingw-w64-x86_64-vulkan-loader | |
- uses: actions/checkout@v2 | |
- name: make mains | |
run: make mains VULKAN=YES |