This commit is contained in:
SuperAuguste 2020-05-14 09:49:05 -04:00
parent bdf7bad51d
commit 8345b94cd6
2 changed files with 27 additions and 0 deletions

19
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install software
run: |
ZIG=$(wget --quiet --output-document=- https://ziglang.org/download/index.json | jq --raw-output '.master."x86_64-linux".tarball')
echo installing $ZIG into ./zig/
wget --quiet --output-document=- $ZIG | tar Jx
mv zig-linux-x86_64-* zig
echo zig version $(./zig/zig version)
- name: build
run: |
export PATH=./zig:$PATH
./ci/linux.sh

8
ci/linux.sh Normal file
View File

@ -0,0 +1,8 @@
zig build
FILE=/zig-cache/bin/zls
if test -f "$FILE"; then
exit 0
fi
exit 1