Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 1.67 KB

readme.md

File metadata and controls

36 lines (20 loc) · 1.67 KB

Running and testing Webassembly code using Gitlab CI

This repo contains dockerfile for image nnaumenko/emscripten-firefox and example how to automate running of WebAssembly tests directly in Firefox browser with Gitlab CI.

Example

Hello world

Purpose: use Gitlab CI to automatically build C++ program into WebAssembly, run the built program directly in Firefox browser, fail the CI Job if the program terminated abnormally and display the program's output.

This can be used to automate simple tests for WebAssembly modules:

  • Emrun's exit code is the value returned by main() in hello.cpp. Returning non-zero value will cause Gitlab CI Job to fail. Non-zero return value can be used to signal failed tests.
  • The stdout and stderr of the C++ program are captured by Emrun. The output can be reviewed to identify the exact failure point. Alternatively the output can be redirected to file which can be parsed or forwarded to other CI Jobs as an artifact.

Docker image

The image is based on trzeci/emscripten-ubuntu with Firefox browser added and configured to operate in headless mode.

To build the image:

git clone https://gitlab.com/nnaumenko/gitlab-ci-wasm
cd gitlab-ci-wasm/docker/emscripten-firefox
sudo docker build -t myimage .

Further reading

Base docker image

Base docker image trzeci/emscripten repo

Emscripten

Emrun documentation

Gitlab CI/CD documentation