CMake: Add LLVM build for Windows and other linker fixes #3169
Workflow file for this run
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: Emscripten build | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'android/**' | |
- 'build-data/osx/**' | |
- 'doc/**' | |
- 'doxygen_doc/**' | |
- 'lang/**' | |
- 'lgtm/**' | |
- 'tools/**' | |
- '!tools/format/**' | |
- 'utilities/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'android/**' | |
- 'build-data/osx/**' | |
- 'doc/**' | |
- 'doxygen_doc/**' | |
- 'lang/**' | |
- 'lgtm/**' | |
- 'tools/**' | |
- '!tools/format/**' | |
- 'utilities/**' | |
# We only care about the latest revision of a PR, so cancel previous instances. | |
concurrency: | |
group: emscripten-build-${{ github.event.pull_request.number || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
build_catatclysm: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mymindstorm/setup-emsdk@v13 | |
- name: Prepare web data | |
run: ./build-scripts/prepare-web-data.sh | |
- name: Build with emcc (emscripten) | |
run: ./build-scripts/build-emscripten.sh | |
- name: Assemble web bundle | |
run: ./build-scripts/prepare-web.sh | |
- name: Create artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: play-cdda | |
path: build/* |