``` name: Build and Release RPM Nightly on: push: schedule: - cron: '0 16 * * 1' jobs: Build-rpm: runs-on: cbdb-weekly steps: - uses: actions/checkout@v3 with: ref: test-release-nightly fetch-depth: 0 - name: Environment Setup run: | pushd $GITHUB_WORKSPACE pushd deploy/build sudo bash README.CentOS.bash popd sudo yum -y install unzip bash bison-devel bzip2 flex-devel less curl \ libevent perl rsync sed sudo tar which openssh-clients scl-utils sudo yum -y install epel-release centos-release-scl devtoolset-10-gcc \ devtoolset-10-gcc-c++ devtoolset-10-binutils devtoolset-10 echo -e "/usr/local/lib \n/usr/local/lib64 \n/usr/lib \n/usr/lib64" >> \ /etc/ld.so.conf sudo ldconfig echo "Environment setup completed !!!" && gcc -v - name: Get New Tag id: set_value env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | git tag -d $(git tag) git fetch --tags echo "The workspace is $GITHUB_WORKSPACE" timestamp=$(date +"%Y%m%d") rm -rf /tmp/release && mkdir /tmp/release old_tag=$(git tag | sort -V -r | head -n 1) main_version=$(echo $old_tag | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+') new_tag="$main_version-$timestamp-nightly" echo "The old tag that already exists is $old_tag" echo "The main version is $main_version" echo "The new tag is $new_tag" echo "::set-output name=NEW_TAG::${new_tag}" echo "::set-output name=MAIN_VERSION::${main_version}" sudo git tag $new_tag && git tag - name: Build RPM Package run: | ./configure --with-perl --with-python --with-libxml --with-gssapi \ --prefix=/home/gpadmin/cbdb-install make -j16 && make install pwd && ruby -v source ~/.bashrc fpm --version echo "Build RPM Package" mkdir -p tmp/usr/local/cloudberrydb cp -a /home/gpadmin/cbdb-install/* tmp/usr/local/cloudberrydb fpm -s dir -t rpm -n cloudberrydb -v \ ${{ steps.set_value.outputs.MAIN_VERSION }} -p ./ -C tmp cp cloudberrydb-${{ steps.set_value.outputs.MAIN_VERSION }}-1.x86_64.rpm \ /tmp/release - name: Release uses: softprops/action-gh-release@v1 with: files: "/tmp/release/*.rpm" name: v${{ steps.set_value.outputs.NEW_TAG }} tag_name: "${{ steps.set_value.outputs.NEW_TAG }}" prerelease: true generate_release_notes: true env: GITHUB_TOKEN: ${{ secrets.RELEASE_NIGHTLY }} ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up