From: rexim Date: Sun, 29 Dec 2019 19:03:50 +0000 (+0700) Subject: (#1224) Enable TCC build on GitHub Actions X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=c47e0e6902018c017a2344a8840de20d14e381ef;p=nothing.git (#1224) Enable TCC build on GitHub Actions --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c217f66d..45ca68e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,22 @@ name: CI on: [push, pull_request] jobs: + build-linux-tcc: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v1 + - name: install dependencies + run: | + sudo apt-get update + sudo apt-get install -qq libsdl2-dev tcc + - name: build nothing + run: | + ./build-posix.sh + env: + CC: tcc + CFLAGS: -DSDL_DISABLE_IMMINTRIN_H -L/usr/lib/x86_64-linux-gnu/pulseaudio + NOTHING_CI: on + build-linux-gcc: runs-on: ubuntu-18.04 steps: