fix dockerfile, pkgs #887
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build_test | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt install -y libgc-dev | |
- name: Setup Vlang | |
uses: vlang/[email protected] | |
with: | |
check-latest: true | |
- name: Install dependencies | |
run: | | |
mkdir -p ~/code/github/freeflowuniverse | |
cd ~/code/github/freeflowuniverse | |
git clone [email protected]:freeflowuniverse/crystallib.git | |
cd crystallib && bash install.sh | |
cd ../ | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Build V Client | |
run: | | |
bash manual/install.sh | |
for main in $(ls web3gw/examples/**/*.v); do | |
v $main | |
done | |
- name: Build Server | |
run: | | |
cd web3gw/web3gw | |
go build |