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

test: Fix git related error in 'build-rpm', add rocky9 #182

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,15 @@ commands:
mount.efs --version
build-rpm:
steps:
- checkout
- run:
name: Install dependencies
command: |
yum -y install rpm-build make systemd
yum -y install rpm-build make systemd git
- run:
name: Add local build repo as safe git directory
command: |
git config --global --add safe.directory /tmp/_circleci_local_build_repo
- checkout
- run:
name: Build RPM
command: |
Expand Down Expand Up @@ -216,6 +220,9 @@ workflows:
- build-rpm-package:
name: rocky8
image: rockylinux/rockylinux:8
- build-rpm-package:
name: rocky9
image: rockylinux/rockylinux:9
- build-rpm-package:
name: amazon-linux-latest
image: amazonlinux:latest
Expand Down