ci: Do not cross compile on PR builds

Signed-off-by: Chris Crone <christopher.crone@docker.com>
This commit is contained in:
Chris Crone 2020-10-21 17:06:39 +02:00 коммит произвёл Djordje Lukic
Родитель bb464a05b0
Коммит df797444d0
1 изменённых файлов: 2 добавлений и 11 удалений

13
.github/workflows/build-pr.yml поставляемый
Просмотреть файл

@ -45,20 +45,11 @@ jobs:
- name: Checkout code into the Go module directory
uses: actions/checkout@v2
- name: Golang cache
uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build Cross
run: make cross
- name: Build CLI
run: make build
- name: Unit Tests
run: make test-unit
- name: End-to-end Tests
run: make e2e