ci: reorder the v-apps-compile job so it does not stop due to vpm timeout-ing
parent
7b1080a567
commit
a761f6888f
|
@ -779,11 +779,6 @@ jobs:
|
||||||
- name: Build V
|
- name: Build V
|
||||||
run: make -j2 && ./v -cc gcc -o v cmd/v
|
run: make -j2 && ./v -cc gcc -o v cmd/v
|
||||||
|
|
||||||
- name: Installing V modules
|
|
||||||
run: |
|
|
||||||
./v install ui
|
|
||||||
./v install nedpals.args
|
|
||||||
|
|
||||||
## vls
|
## vls
|
||||||
- name: Clone VLS
|
- name: Clone VLS
|
||||||
run: git clone --depth 1 https://github.com/vlang/vls
|
run: git clone --depth 1 https://github.com/vlang/vls
|
||||||
|
@ -798,16 +793,6 @@ jobs:
|
||||||
- name: Build vab
|
- name: Build vab
|
||||||
run: cd vab; ../v ./vab.v ; cd ..
|
run: cd vab; ../v ./vab.v ; cd ..
|
||||||
|
|
||||||
## vex
|
|
||||||
- name: Install Vex dependencies
|
|
||||||
run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev
|
|
||||||
- name: Install Vex
|
|
||||||
run: ./v install nedpals.vex
|
|
||||||
- name: Compile the simple Vex example
|
|
||||||
run: ./v ~/.vmodules/nedpals/vex/examples/simple_example.v
|
|
||||||
- name: Run Vex Tests
|
|
||||||
run: ./v test ~/.vmodules/nedpals/vex
|
|
||||||
|
|
||||||
## gitly
|
## gitly
|
||||||
- name: Install markdown
|
- name: Install markdown
|
||||||
run: ./v install markdown
|
run: ./v install markdown
|
||||||
|
@ -818,3 +803,18 @@ jobs:
|
||||||
../v .
|
../v .
|
||||||
../v -autofree .
|
../v -autofree .
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
## vex
|
||||||
|
- name: Install Vex dependencies
|
||||||
|
run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev
|
||||||
|
- name: Install Vex
|
||||||
|
run: mkdir -p ~/.vmodules/nedpals; git clone https://github.com/nedpals/vex ~/.vmodules/nedpals/vex
|
||||||
|
- name: Compile the simple Vex example
|
||||||
|
run: ./v ~/.vmodules/nedpals/vex/examples/simple_example.v
|
||||||
|
- name: Run Vex Tests
|
||||||
|
run: ./v test ~/.vmodules/nedpals/vex
|
||||||
|
|
||||||
|
## vpm modules
|
||||||
|
- name: Installing V modules
|
||||||
|
run: |
|
||||||
|
./v install ui
|
||||||
|
|
Loading…
Reference in New Issue