Skip to content

Commit

Permalink
ci: rename makefile unit-tests task, add acceptance-tests task
Browse files Browse the repository at this point in the history
  • Loading branch information
distorhead committed Jan 25, 2022
1 parent 5a07073 commit 525db42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commit_tests.yml
Expand Up @@ -27,9 +27,9 @@ jobs:
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
- name: Test
- name: Tests
run: |
make unit-test
make unit-tests
lint:
name: Lint
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Expand Up @@ -8,8 +8,10 @@ werf:
buildah-test:
CGO_ENABLED=1 go install -compiler gc -ldflags="-linkmode external -extldflags=-static" -tags="dfrunmount dfssh containers_image_openpgp osusergo exclude_graphdriver_devicemapper netgo no_devmapper static_build" github.com/werf/werf/cmd/buildah-test

acceptance-tests:
CGO_ENABLED=1 ginkgo -r -v -compiler gc -ldflags="-linkmode external -extldflags=-static" -tags="dfrunmount dfssh containers_image_openpgp osusergo exclude_graphdriver_devicemapper netgo no_devmapper static_build" integration/suites

unit-test:
unit-tests:
CGO_ENABLED=1 go test -v -compiler gc -ldflags="-linkmode external -extldflags=-static" -tags="dfrunmount dfssh containers_image_openpgp osusergo exclude_graphdriver_devicemapper netgo no_devmapper static_build" github.com/werf/werf/pkg/...

fmt:
Expand Down

0 comments on commit 525db42

Please sign in to comment.