mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
CI: apt update
This commit is contained in:
parent
8974aa4513
commit
a124d1f0eb
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -32,7 +32,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 12.x
|
node-version: 12.x
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libssl-dev
|
run: sudo apt-get update; sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libssl-dev
|
||||||
- name: Build v
|
- name: Build v
|
||||||
run: make && ./v -o v compiler
|
run: make && ./v -o v compiler
|
||||||
- name: Test v->c
|
- name: Test v->c
|
||||||
@ -45,7 +45,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get install --quiet -y tcc libglfw3 libglfw3-dev libfreetype6-dev libssl-dev
|
run: sudo apt-get update; sudo apt-get install --quiet -y tcc libglfw3 libglfw3-dev libfreetype6-dev libssl-dev
|
||||||
- name: Build v
|
- name: Build v
|
||||||
run: make && ./v -o v compiler
|
run: make && ./v -o v compiler
|
||||||
- name: Test v->c with tcc
|
- name: Test v->c with tcc
|
||||||
|
Loading…
Reference in New Issue
Block a user