Rework callback system to use atomic instead of Mutex. #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: Rust | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup git submodules | |
run: git submodule init; git submodule update | |
- name: Install alsa, udev, glfw3, sdl, and wayland | |
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libglfw3-dev libwayland-dev libsdl2-dev | |
- name: Build | |
run: cd raylib && cargo build --verbose | |
# - name: Run tests [Requires window system] | |
# run: cargo test -p raylib-test --verbose |