Added PVK_* macros to configure the linkage and ABI #32
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: shader compiler test | |
run: glslc --version | |
- name: build system test | |
run: mingw32-make --version | |
- name: build-debug | |
run: mingw32-make -s build-debug | |
- name: cleaning | |
run: mingw32-make -i -s clean |