forked from open-horizon/anax
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 1.52 KB
/
anax-build-test.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This pipeline is to build anax binaries
name: anax-build-test
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the anax-build branch
on:
pull_request:
branches:
- master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-18.04
strategy:
matrix:
tests: ["NOLOOP=1", "NOLOOP=1 TEST_PATTERNS=sall"]
env:
GOPATH: /home/runner/work/anax/anax/go
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
path: go/src/github.com/${{github.repository}}
# prepare the environment
- name: Set up golang 1.16.1
uses: actions/setup-go@v2
with:
go-version: '1.16.1'
# build anax binaries
- name: Build anax binaries
run: cd ${GOPATH}/src/github.com/${GITHUB_REPOSITORY} && make
# build the e2edev docker images
- name: Build the e2edev docker images
run: cd ${GOPATH}/src/github.com/${GITHUB_REPOSITORY} && make -C test build-remote
# E2E development test
- name: E2E dev-test
run: cd ${GOPATH}/src/github.com/${GITHUB_REPOSITORY} && make -C test clean && make -C test test TEST_VARS=${{matrix.tests}}