Swap out old for new headers #1034
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: Linux x64 Build | |
on: | |
push: | |
paths-ignore: | |
- '**.js' | |
- '**.dfn' | |
- '**.scp' | |
- '**.txt' | |
- '**.html' | |
- '**.sln' | |
- '**.vcxproj' | |
pull_request: | |
paths-ignore: | |
- '**.js' | |
- '**.dfn' | |
- '**.scp' | |
- '**.txt' | |
- '**.html' | |
- '**.sln' | |
- '**.vcxproj' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate Makefiles | |
run: cmake make/cmake -DCMAKE_BUILD_TYPE=Release | |
- name: Building | |
run: cmake --build . |