Compare commits

..

1 Commits

Author SHA1 Message Date
unkinben 38da6718f8 feat: first build of ProxLB
Build / Build on AlmaLinux 8 (pull_request) Failing after 1m48s
- version 1.0.2
- setup gitea actions workflows
2024-09-07 22:26:36 +10:00
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ jobs:
dnf install -y rpm cmake git make python3-yaml
- name: Build project
run: make package
run: make build
- name: Find built packages
run: |
+2 -2
View File
@@ -26,12 +26,12 @@ jobs:
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