assetsys: Add documentation on assetsys_mount_data() #1
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, pull_request, workflow_dispatch] | |
jobs: | |
build-windows-msvc: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v1 | |
# this runs vcvarsall for us, so we get the MSVC toolchain in PATH. | |
- uses: seanmiddleditch/gha-setup-vsdevenv@master | |
- name: build cstr.h | |
run: | | |
cl /Tc cstr.h /DCSTR_IMPLEMENTATION /DCSTR_RUN_TESTS /MTd | |
- name: run cstr tests | |
run: .\cstr.exe | |
- name: build assetsys.h | |
run: | | |
cl /Tc assetsys.h /DASSETSYS_IMPLEMENTATION /DASSETSYS_RUN_TESTS /DSTRPOOL_IMPLEMENTATION /MTd | |
- name: run assetsys tests | |
run: .\assetsys.exe | |
build-windows-msvc-cpp: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v1 | |
# this runs vcvarsall for us, so we get the MSVC toolchain in PATH. | |
- uses: seanmiddleditch/gha-setup-vsdevenv@master | |
- name: build cstr.h | |
run: | | |
cl /Tp cstr.h /DCSTR_IMPLEMENTATION /DCSTR_RUN_TESTS /MTd | |
- name: run cstr tests | |
run: .\cstr.exe | |
- name: build assetsys.h | |
run: | | |
cl /Tp assetsys.h /DASSETSYS_IMPLEMENTATION /DASSETSYS_RUN_TESTS /DSTRPOOL_IMPLEMENTATION /MTd | |
- name: run assetsys tests | |
run: .\assetsys.exe | |
build-windows-tcc: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: robinraju/[email protected] | |
with: | |
repository: "mattiasgustavsson/tcc-build" | |
tag: "tcc64" | |
fileName: "tcc-0.9.27-win64-bin.zip" | |
- name: install dependencies | |
run: 7z x tcc-0.9.27-win64-bin.zip | |
- name: build cstr.h | |
run: | | |
tcc\tcc -xc cstr.h -DCSTR_IMPLEMENTATION -DCSTR_RUN_TESTS | |
- name: run cstr tests | |
run: .\cstr.exe | |
- name: build assetsys.h | |
run: | | |
tcc\tcc -xc assetsys.h -DASSETSYS_IMPLEMENTATION -DASSETSYS_RUN_TESTS -DSTRPOOL_IMPLEMENTATION | |
- name: run assetsys tests | |
run: .\assetsys.exe | |
build-macos: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build cstr.h | |
run: | | |
clang -xc cstr.h -DCSTR_IMPLEMENTATION -DCSTR_RUN_TESTS | |
- name: run cstr tests | |
run: ./a.out | |
- name: build assetsys.h | |
run: | | |
clang -xc assetsys.h -DASSETSYS_IMPLEMENTATION -DASSETSYS_RUN_TESTS -DSTRPOOL_IMPLEMENTATION | |
- name: run assetsys tests | |
run: ./a.out | |
build-macos-cpp: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build cstr.h | |
run: | | |
clang -xc++ cstr.h -DCSTR_IMPLEMENTATION -DCSTR_RUN_TESTS | |
- name: run cstr tests | |
run: ./a.out | |
- name: build assetsys.h | |
run: | | |
clang -xc++ assetsys.h -DASSETSYS_IMPLEMENTATION -DASSETSYS_RUN_TESTS -DSTRPOOL_IMPLEMENTATION | |
- name: run assetsys tests | |
run: ./a.out | |
build-linux-gcc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build cstr.h | |
run: | | |
gcc -xc cstr.h -DCSTR_IMPLEMENTATION -DCSTR_RUN_TESTS | |
- name: run cstr tests | |
run: ./a.out | |
- name: build assetsys.h | |
run: | | |
gcc -xc assetsys.h -DASSETSYS_IMPLEMENTATION -DASSETSYS_RUN_TESTS -DSTRPOOL_IMPLEMENTATION | |
- name: run assetsys tests | |
run: ./a.out | |
build-linux-gcc-cpp: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build cstr.h | |
run: | | |
gcc -xc++ cstr.h -DCSTR_IMPLEMENTATION -DCSTR_RUN_TESTS | |
- name: run cstr tests | |
run: ./a.out | |
- name: build assetsys.h | |
run: | | |
gcc -xc++ assetsys.h -DASSETSYS_IMPLEMENTATION -DASSETSYS_RUN_TESTS -DSTRPOOL_IMPLEMENTATION | |
- name: run assetsys tests | |
run: ./a.out |