mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-25 13:00:04 +00:00
bbdd0fefda
* Update minimum required CMake to 3.17.2 - For Wasm build, update to emscripten/emsdk:3.1.28 which has 3.22.1 - Move the docker-compose.yml down to the source/wasm directory. Fixes: #5040 * Fix working directory for invocation of wasm build
11 lines
219 B
YAML
11 lines
219 B
YAML
version: "3"
|
|
services:
|
|
build:
|
|
image: emscripten/emsdk:3.1.28
|
|
environment:
|
|
GITHUB_RUN_NUMBER: ${GITHUB_RUN_NUMBER:-}
|
|
working_dir: /app
|
|
command: ./source/wasm/build.sh
|
|
volumes:
|
|
- ./:/app
|