Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration to github actions #693

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft

Migration to github actions #693

wants to merge 5 commits into from

Conversation

dalerichardson
Copy link

No description provided.

@@ -10,7 +10,7 @@ echo "installing virtualbox guest addition dependencies"
VBOX_GUEST_DEPS=(kernel-devel kernel-headers gcc perl)
test "$(rpm --quiet -q bzip2)$?" -eq 0 || VBOX_GUEST_DEPS+=(bzip2)
bash /tmp/retry.sh 5 yum -y install "${VBOX_GUEST_DEPS[@]}"
bash /tmp/retry.sh 5 yum -y install dkms make
bash /tmp/retry.sh 5 yum -y install dkms make -f Makefile.spel
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a yum install command, not a make command, so the option isn't valid here. No change needed.

Suggested change
bash /tmp/retry.sh 5 yum -y install dkms make -f Makefile.spel
bash /tmp/retry.sh 5 yum -y install dkms make

@@ -12,10 +12,10 @@ env:
phases:
install:
commands:
- make -C build/vagrant install
- make -C -f Makefile.spel build/vagrant install
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-C and -f actually conflict. No need to change these, since this is actually already telling make to use the vagrant buildspec.

Suggested change
- make -C -f Makefile.spel build/vagrant install
- make -C build/vagrant install

build:
commands:
- make -C build/vagrant build
- make -C -f Makefile.spel build/vagrant build
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- make -C -f Makefile.spel build/vagrant build
- make -C build/vagrant build

@@ -41,7 +41,7 @@ if [[ -n "${SPEL_REPO_COMMIT:-}" ]] ; then
fi

# install packer
make -f Makefile.tardigrade-ci packer/install
make -f Makefile.spel packer/install
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
make -f Makefile.spel packer/install
make packer/install

@@ -30,7 +30,7 @@ $(info SPEL_VERSION=$(SPEL_VERSION))
all: build

install:
$(MAKE) -f ../../Makefile.tardigrade-ci packer/install
$(MAKE) -f ../../Makefile.spel packer/install
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Makefile.spel Outdated

install:
$(MAKE) -f Makefile.tardigrade-ci packer/install
$(MAKE) -f Makefile.spel packer/install
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Makefile.spel Outdated

docs/generate:
$(MAKE) -f Makefile.tardigrade-ci docs/generate
$(MAKE) -f Makefile.spel docs/generate
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Makefile.spel Outdated
@@ -45,13 +45,13 @@ endif
all: build

docs/lint:
$(MAKE) -f Makefile.tardigrade-ci docs/lint
$(MAKE) -f Makefile.spel docs/lint
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants