-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1315 from sodafoundation/anvithks-gh-ci
[Migrate CI] Added workflow for GitHub actions CI. Deleted travis.yml.
- Loading branch information
Showing
3 changed files
with
61 additions
and
49 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: SODA API CI Build | ||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
build: | ||
env: | ||
GO111MODULE: on | ||
TARGET: amd64 | ||
|
||
strategy: | ||
matrix: | ||
go-version: [1.12.x, 1.13.x] | ||
os: [ubuntu-16.04] | ||
|
||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Checkout project | ||
uses: actions/checkout@v2 | ||
|
||
- name: Symlink source into GOPATH for api | ||
run: | | ||
mkdir -p $(go env GOPATH)/src/github.com/sodafoundation/api | ||
sudo ln -s $(pwd) $(go env GOPATH)/src/github.com/sodafoundation/api | ||
- name: Create the Folder structure and symlink to opensds (TODO:-Fix vendor module from opensds to sodafoundation) | ||
run: | | ||
echo "Check current dir: \n" | ||
pwd | ||
echo "GOPATH: $(go env GOPATH)" | ||
sudo mkdir -p $(go env GOPATH)/src/github.com/opensds | ||
sudo ln -s $(go env GOPATH)/src/github.com/sodafoundation $(go env GOPATH)/src/github.com/opensds | ||
- name: Install Pre-requisites | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential gcc | ||
sudo apt-get install -y librados-dev librbd-dev | ||
sudo apt-get install -y lvm2 tgt open-iscsi | ||
sudo docker pull p1c2u/openapi-spec-validator | ||
- name: Build the binaries | ||
run: | | ||
make osdsapiserver | ||
make osdsctl | ||
- name: Run CI scripts for Testing | ||
run: ./install/CI/coverage && ./install/CI/test | ||
|
||
- name: After success run Codecov Coverage tool. | ||
uses: codecov/codecov-action@v1 | ||
|
||
- name: Clean up the build | ||
run: | | ||
make clean |
This file was deleted.
Oops, something went wrong.
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