Merge pull request #264 from wayyoungboy/2.2.0-qulei #159
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
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 |