ci test
This commit is contained in:
parent
bdf7bad51d
commit
8345b94cd6
19
.github/workflows/main.yml
vendored
Normal file
19
.github/workflows/main.yml
vendored
Normal 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
8
ci/linux.sh
Normal file
@ -0,0 +1,8 @@
|
||||
zig build
|
||||
|
||||
FILE=/zig-cache/bin/zls
|
||||
|
||||
if test -f "$FILE"; then
|
||||
exit 0
|
||||
fi
|
||||
exit 1
|
Loading…
Reference in New Issue
Block a user