Skip to content

Commit

Permalink
obdiag gather and analyze parameters/variables
Browse files Browse the repository at this point in the history
  • Loading branch information
oraclebird committed Jul 5, 2024
1 parent 19f7258 commit 73ae942
Show file tree
Hide file tree
Showing 2 changed files with 917 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/build_rpm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: build rpm

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build-and-package-x86_64:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.8'

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools wheel
pip3 install -r requirements3.txt
- name: Set up RPM build env
run: |
sudo apt-get update && sudo apt-get install -y rpm alien fakeroot
- name: Build package
run: |
pwd
ls -lh
export RELEASE=`date +%Y%m%d%H%M`
cat ./rpm/oceanbase-diagnostic-tool.spec
rpmbuild -bb ./rpm/oceanbase-diagnostic-tool.spec
- name: Convert RPM to DEB
run: |
mkdir -p /home/runner/artifacts
fakeroot alien --scripts --to-deb /home/runner/rpmbuild/RPMS/x86_64/oceanbase-diagnostic-tool-*.rpm
- name: 'Upload Artifacts'
uses: actions/upload-artifact@v3
with:
name: obdiag-packages
path: |
/home/runner/rpmbuild/RPMS/x86_64/oceanbase-diagnostic-tool-*.rpm
/home/runner/work/oceanbase-diagnostic-tool/oceanbase-diagnostic-tool/oceanbase-diagnostic-tool_*.deb
retention-days: 3
debug: true
Loading

0 comments on commit 73ae942

Please sign in to comment.