Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dalerichardson committed Jun 17, 2024
1 parent 23c0f42 commit 7680f2b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions Makefile.spel
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ endif
all: build

docs/lint:
$(MAKE) -f Makefile.spel docs/lint
$(MAKE) -f Makefile docs/lint

docs/generate:
$(MAKE) -f Makefile.spel docs/generate
$(MAKE) -f Makefile docs/generate

install:
$(MAKE) -f Makefile.spel packer/install
$(MAKE) -f Makefile packer/install
bash -eo pipefail ./build/install.sh

# The profile and region envs are used only by the `pre_build`, `build`, and `post_build`
Expand Down
2 changes: 1 addition & 1 deletion build/vagrant/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ $(info SPEL_VERSION=$(SPEL_VERSION))
all: build

install:
$(MAKE) -f ../../Makefile.spel packer/install
$(MAKE) -f ../../Makefile packer/install

build: export PACKER_LOG = 1
build: export PACKER_LOG_PATH = .spel/$(SPEL_VERSION)/packer.build-spel-vagrant.log
Expand Down
2 changes: 1 addition & 1 deletion build/vagrant/build-spel-vagrant.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if [[ -n "${SPEL_REPO_COMMIT:-}" ]] ; then
fi

# install packer
make -f Makefile.spel packer/install
make -f Makefile packer/install

# build vagrant box
mkdir -p "${CLONE_DIR}/.spel/${SPEL_VERSION:?}/"
Expand Down
4 changes: 2 additions & 2 deletions build/vagrant/buildspec-vagrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ env:
phases:
install:
commands:
- make -C -f Makefile.spel build/vagrant install
- make -C -f Makefile build/vagrant install
build:
commands:
- make -C -f Makefile.spel build/vagrant build
- make -C -f Makefile build/vagrant build
post_build:
commands:
- find . -type f \( -name '*.box' -o -name '*.ova' \) -print0 | xargs -0 rm -f
Expand Down
4 changes: 2 additions & 2 deletions buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ phases:
- make install
build:
commands:
- make -f Makefile.spel build
- make -f Makefile build
post_build:
commands:
- make -f Makefile.spel post_build
- make -f Makefile post_build
- find . -type f \( -name '*.box' -o -name '*.ova' \) -print0 | xargs -0 rm -f

artifacts:
Expand Down

0 comments on commit 7680f2b

Please sign in to comment.