Compare commits

..

1 Commits

Author SHA1 Message Date
unkinben b524730275 feat: first build of ProxLB
Build / Build on AlmaLinux 8 (pull_request) Failing after 36s
- version 1.0.2
- setup gitea actions workflows
2024-09-07 22:18:01 +10:00
3 changed files with 6 additions and 8 deletions
+1 -2
View File
@@ -20,11 +20,10 @@ jobs:
- name: Install required packages
run: |
dnf groupinstall -y 'Development Tools'
dnf install -y rpm cmake git make python3-yaml
- name: Build project
run: make package
run: make build
- name: Find built packages
run: |
+2 -3
View File
@@ -22,16 +22,15 @@ jobs:
- name: Install required packages
run: |
dnf groupinstall -y 'Development Tools'
dnf install -y rpm cmake git make python3-yaml
- name: Build project
run: make package
run: make build
- name: Upload RPMs
env:
DRONECI_PASSWORD: ${{ secrets.DRONECI_PASSWORD }}
run: |
for rpm in /workspace/unkin/rpmbuild-proxlb/packages/*.rpm; do
for rpm in /workspace/src/rpmbuild/RPMS/*/*.rpm; do
curl --user droneci:${{ secrets.DRONECI_PASSWORD }} --upload-file $rpm https://git.query.consul/api/packages/unkin/rpm/almalinux/el8/upload
done
+3 -3
View File
@@ -2,9 +2,9 @@
VERSION=1.0.2
REPO_URL=https://github.com/gyptazy/ProxLB.git
BUILD_DIR=$(PWD)/build
PACKAGE_DIR=$(PWD)/packages
REPO_DIR=$(PWD)/ProxLB
BUILD_DIR=/workspace/build
PACKAGE_DIR=workspace/packages
REPO_DIR=/workspace/ProxLB
.PHONY: all clean download prepare build package