Copy THIRD_PARTY_LICENSES.md in CMake install step instead of release… #36
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: Build Workflow | |
on: | |
push: | |
branches: '**' | |
paths: | |
- '**.hpp' | |
- '**.cpp' | |
- '**/CMakeLists.txt' | |
- 'cmake/**' | |
- 'deps/**' | |
- '.github/workflows/build.yml' | |
pull_request: | |
paths: | |
- '**.hpp' | |
- '**.cpp' | |
- '**/CMakeLists.txt' | |
- 'cmake/**' | |
- 'deps/**' | |
- '.github/workflows/build.yml' | |
jobs: | |
build: | |
name: Build (${{ matrix.config }}) | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
config: [Debug, Release] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Create environment variables | |
run: | | |
$sha = (git rev-parse --short $env:GITHUB_SHA) | |
echo "RED3EXT_COMMIT_SHA=${sha}" | Out-File -FilePath $env:GITHUB_ENV -Encoding UTF8 -Append | |
$config = "${{ matrix.config }}".ToLower() | |
echo "RED3EXT_PRETTY_CONFIG=${config}" | Out-File -FilePath $env:GITHUB_ENV -Encoding UTF8 -Append | |
- name: Create build directory | |
run: mkdir build | |
- name: Configure | |
working-directory: build | |
run: | | |
cmake ` | |
-DRED3EXT_INSTALL=ON ` | |
-DRED3EXT_EXTRA_WARNINGS=ON ` | |
-DRED3EXT_TREAT_WARNINGS_AS_ERRORS=ON ` | |
"${{ github.workspace }}" | |
- name: Build | |
working-directory: build | |
run: | | |
cmake ` | |
--build . ` | |
--config ${{ matrix.config }} | |
- name: Install | |
working-directory: build | |
run: | | |
cmake ` | |
--install . ` | |
--prefix "${{ github.workspace }}/build/install" ` | |
--config ${{ matrix.config }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: red3ext-${{ env.RED3EXT_PRETTY_CONFIG }}-${{ env.RED3EXT_COMMIT_SHA }} | |
path: build/install |