-
Notifications
You must be signed in to change notification settings - Fork 1
27 lines (26 loc) · 894 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Main Workflow
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: |
sudo apt-get install -y jq autoconf automake build-essential git libtool libsqlite3-dev python3 python3-pip net-tools zlib1g-dev libsodium-dev gettext
- name: Install Python Dependencies
run: |
pip3 install --upgrade pip
pip3 install mako
pip3 install grpcio-tools
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Installing protoc-gen-go
run: |
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/[email protected]
echo "$HOME/go/bin" >> $GITHUB_PATH
- name: Checkout BLAST
uses: actions/checkout@v4
- name: Build All
run: ./build.sh