-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
obdiag gather and analyze parameters/variables
- Loading branch information
1 parent
19f7258
commit 73ae942
Showing
2 changed files
with
917 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.