mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-08 22:45:55 +02:00
Remove old rpmbuild workflow
This commit is contained in:
parent
8271d1fba0
commit
717c5315a2
9
.github/workflows/AlmaLinux.yml
vendored
9
.github/workflows/AlmaLinux.yml
vendored
@ -9,10 +9,11 @@ on: push
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
#
|
#
|
||||||
# Build on AlmaLinux 8.5 using golang version 1.16
|
# Build on AlmaLinux 8.5 using go-toolset
|
||||||
#
|
#
|
||||||
AlmaLinux-RPM-build:
|
AlmaLinux-RPM-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
# See: https://hub.docker.com/_/almalinux
|
||||||
container: almalinux:8.5
|
container: almalinux:8.5
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
@ -41,12 +42,12 @@ jobs:
|
|||||||
- name: Save RPM as artifact
|
- name: Save RPM as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector RPM AlmaLinux 8.5
|
name: cc-metric-collector RPM for AlmaLinux 8.5
|
||||||
path: ${{ steps.rpmbuild.outputs.RPM }}
|
path: ${{ steps.rpmbuild.outputs.RPM }}
|
||||||
- name: Save SRPM as artifact
|
- name: Save SRPM as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector SRPM AlmaLinux 8.5
|
name: cc-metric-collector SRPM for AlmaLinux 8.5
|
||||||
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
||||||
|
|
||||||
# See: https://github.com/softprops/action-gh-release
|
# See: https://github.com/softprops/action-gh-release
|
||||||
@ -57,4 +58,4 @@ jobs:
|
|||||||
name: cc-metric-collector-${{github.ref_name}}
|
name: cc-metric-collector-${{github.ref_name}}
|
||||||
files: |
|
files: |
|
||||||
${{ steps.rpmbuild.outputs.RPM }}
|
${{ steps.rpmbuild.outputs.RPM }}
|
||||||
${{ steps.rpmbuild.outputs.SRPM }}
|
${{ steps.rpmbuild.outputs.SRPM }}
|
||||||
|
@ -9,7 +9,7 @@ on: push
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
#
|
#
|
||||||
# Build with UBI 8
|
# Build on UBI 8 using go-toolset
|
||||||
#
|
#
|
||||||
UBI-8-RPM-build:
|
UBI-8-RPM-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -42,12 +42,12 @@ jobs:
|
|||||||
- name: Save RPM as artifact
|
- name: Save RPM as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector RPM build for UBI 8
|
name: cc-metric-collector RPM for UBI 8
|
||||||
path: ${{ steps.rpmbuild.outputs.RPM }}
|
path: ${{ steps.rpmbuild.outputs.RPM }}
|
||||||
- name: Save SRPM as artifact
|
- name: Save SRPM as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: cc-metric-collector SRPM build for UBI 8
|
name: cc-metric-collector SRPM for UBI 8
|
||||||
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
path: ${{ steps.rpmbuild.outputs.SRPM }}
|
||||||
|
|
||||||
# See: https://github.com/softprops/action-gh-release
|
# See: https://github.com/softprops/action-gh-release
|
||||||
|
58
.github/workflows/rpmbuild.yml
vendored
58
.github/workflows/rpmbuild.yml
vendored
@ -1,58 +0,0 @@
|
|||||||
name: Run RPM Build
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '**'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-alma-8_5:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: TomTheBear/rpmbuild@alma8.5
|
|
||||||
id: rpm
|
|
||||||
name: Build RPM package on AlmaLinux 8.5
|
|
||||||
with:
|
|
||||||
spec_file: "./scripts/cc-metric-collector.spec"
|
|
||||||
- name: Save RPM as artifact
|
|
||||||
uses: actions/upload-artifact@v1.0.0
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector RPM AlmaLinux 8.5
|
|
||||||
path: ${{ steps.rpm.outputs.rpm_path }}
|
|
||||||
- name: Save SRPM as artifact
|
|
||||||
uses: actions/upload-artifact@v1.0.0
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector SRPM AlmaLinux 8.5
|
|
||||||
path: ${{ steps.rpm.outputs.source_rpm_path }}
|
|
||||||
- name: Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector-${{github.ref_name}}
|
|
||||||
files: |
|
|
||||||
${{ steps.rpm.outputs.source_rpm_path }}
|
|
||||||
${{ steps.rpm.outputs.rpm_path }}
|
|
||||||
build-rhel-ubi8:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: TomTheBear/rpmbuild@rh-ubi8
|
|
||||||
id: rpm
|
|
||||||
name: Build RPM package on Red Hat Universal Base Image 8
|
|
||||||
with:
|
|
||||||
spec_file: "./scripts/cc-metric-collector.spec"
|
|
||||||
- name: Save RPM as artifact
|
|
||||||
uses: actions/upload-artifact@v1.0.0
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector RPM Red Hat Universal Base Image 8
|
|
||||||
path: ${{ steps.rpm.outputs.rpm_path }}
|
|
||||||
- name: Save SRPM as artifact
|
|
||||||
uses: actions/upload-artifact@v1.0.0
|
|
||||||
with:
|
|
||||||
name: cc-metric-collector SRPM Red Hat Universal Base Image 8
|
|
||||||
path: ${{ steps.rpm.outputs.source_rpm_path }}
|
|
||||||
- name: Release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
with:
|
|
||||||
files: |
|
|
||||||
${{ steps.rpm.outputs.source_rpm_path }}
|
|
||||||
${{ steps.rpm.outputs.rpm_path }}
|
|
Loading…
x
Reference in New Issue
Block a user