Skip to content

Commit

Permalink
Raw SDL2 bindings (#48)
Browse files Browse the repository at this point in the history
This is the 3rd rewrite of deno_sdl2.

First one used a TCP backend. Second one used deno_bindgen to wrap rust-sdl2. This one removes that abstraction and we're left with raw bindings to SDL2.

It's much easier to maintain/release deno_sdl2 now!
  • Loading branch information
littledivy authored Mar 28, 2022
1 parent 1fa5286 commit 0dd7e43
Show file tree
Hide file tree
Showing 28 changed files with 1,239 additions and 3,342 deletions.
63 changes: 0 additions & 63 deletions .github/workflows/build.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [main]
pull_request:

jobs:
build:
name: Build ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: canary

- name: typecheck & formatting
shell: bash
run: |
set -xeuo pipefail
deno cache --unstable mod.ts
deno fmt --check
Loading

0 comments on commit 0dd7e43

Please sign in to comment.