SymbolAccess:Write(): fill string with null bytes #82
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: build | |
on: push | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install meson | |
run: sudo apt update -y && sudo apt install -y meson | |
- uses: actions/checkout@v2 | |
- name: compile library | |
run: meson build && ninja -C build | |
- name: compile example | |
run: meson example/build example && ninja -C example/build | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: ubuntu | |
path: | | |
build/ | |
example/build/ |