Skip to content

feat: add mutex::unlocker{} #381

feat: add mutex::unlocker{}

feat: add mutex::unlocker{} #381

Workflow file for this run

name: macOS
on: [push]
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: build debug
run: |
mkdir ./out.d
cd ./out.d
cmake .. -DCMAKE_BUILD_TYPE=Debug
cmake --build . --config Debug
./rua_test_11
./rua_test_14
./rua_test_17
./rua_test_20
- name: build release
run: |
mkdir ./out
cd ./out
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
./rua_test_11
./rua_test_14
./rua_test_17
./rua_test_20