mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: add a separate gitly-compiles
job
This commit is contained in:
parent
b0ce66d141
commit
d77a78d945
26
.github/workflows/ci.yml
vendored
26
.github/workflows/ci.yml
vendored
@ -149,14 +149,6 @@ jobs:
|
|||||||
## run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
## run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
||||||
# - name: Build Vorum
|
# - name: Build Vorum
|
||||||
# run: git clone --depth 1 https://github.com/vlang/vorum && cd vorum && ../v . && cd ..
|
# run: git clone --depth 1 https://github.com/vlang/vorum && cd vorum && ../v . && cd ..
|
||||||
- name: Build Gitly
|
|
||||||
run: |
|
|
||||||
git clone --depth 1 https://github.com/vlang/gitly
|
|
||||||
./v install markdown
|
|
||||||
cd gitly
|
|
||||||
../v .
|
|
||||||
../v -autofree .
|
|
||||||
cd ..
|
|
||||||
# - name: Build vpm
|
# - name: Build vpm
|
||||||
# run: git clone --depth 1 https://github.com/vlang/vpm && cd vpm && ../v . && cd ..
|
# run: git clone --depth 1 https://github.com/vlang/vpm && cd vpm && ../v . && cd ..
|
||||||
# - name: Build V UI examples
|
# - name: Build V UI examples
|
||||||
@ -349,7 +341,6 @@ jobs:
|
|||||||
run: ./v run cmd/tools/check-md.v doc/docs.md CHANGELOG.md
|
run: ./v run cmd/tools/check-md.v doc/docs.md CHANGELOG.md
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
compilable-v-c-and-v-win-c:
|
compilable-v-c-and-v-win-c:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -403,3 +394,20 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
./v install ui
|
./v install ui
|
||||||
./v install nedpals.args
|
./v install nedpals.args
|
||||||
|
|
||||||
|
gitly-compiles:
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install dependencies
|
||||||
|
run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev
|
||||||
|
- name: Build V
|
||||||
|
run: make -j2 && ./v -cc gcc -o v cmd/v
|
||||||
|
- name: Build Gitly
|
||||||
|
run: |
|
||||||
|
git clone --depth 1 https://github.com/vlang/gitly
|
||||||
|
./v install markdown
|
||||||
|
cd gitly
|
||||||
|
../v .
|
||||||
|
../v -autofree .
|
||||||
|
cd ..
|
||||||
|
Loading…
Reference in New Issue
Block a user