Skip to content

Commit

Permalink
Exclude 'test' dep from 'all' target
Browse files Browse the repository at this point in the history
  • Loading branch information
t13a committed Jul 19, 2020
1 parent 3b45aef commit f6c9fb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
- docker

script:
- make
- make all test

before_deploy:
- export TRAVIS_TAG=$TRAVIS_BRANCH
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ include *.mk

.DEFAULT_GOAL := all
.PHONY: all
all: init build test
all: init build

.PHON: init
init: $(INIT_FILES)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The build process and E2E tests (using [QEMU](https://www.qemu.org/)) are run en
The following command generates the ISO image at `out/archlinux-cloud-YYYY.mm.dd-x86_64.iso` then run all E2E tests.

```sh
$ make init build test # or just simply `make`
$ make all test
```

To delete all generated files, run the following command.
Expand Down

0 comments on commit f6c9fb4

Please sign in to comment.