Files
nosqlbench/.github/workflows/preview.yml
T

287 lines
9.0 KiB
YAML

name: preview
# This workflow should run for any push which is a preview build.
# Preview builds are indicated with a tag that ends in -preview
# In order to effect this, you can do the following:
# scripts/tag-preview-build
# If you want to replace a build, you can use -f and then
# push the update to the tag like push -f origin <tag>,
# although this should never be done!
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+-preview"
jobs:
preview-build:
runs-on: ubuntu-22.04
outputs:
preview_version: ${{ steps.versions.outputs.PREVIEW_VERSION }}
docker_tags: ${{ steps.versions.outputs.DOCKER_TAGS }}
steps:
- name: checkout repo
uses: actions/checkout@v7
- name: setup java
uses: actions/setup-java@v5
with:
distribution: 'oracle'
java-version: '25'
java-package: jdk
architecture: x64
- name: set git username
run: git config --global user.email "${{ secrets.NBDROID_EMAIL }}"
- name: set git email
run: git config --global user.name "${{ secrets.NBDROID_NAME }}"
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
if [ -n "$(docker image ls -aq)" ]; then docker rmi $(docker image ls -aq); fi
df -h
- name: install fuse2
run: sudo apt install libfuse2
- name: install desktop-file-utils
run: sudo apt install desktop-file-utils
- name: read versions
id: versions
run: |
set -x
PREVIEW_VERSION=$(scripts/get-preview-version.sh)
echo "PREVIEW_VERSION=${PREVIEW_VERSION}" >> $GITHUB_ENV
echo "PREVIEW_VERSION=${PREVIEW_VERSION}" >> $GITHUB_OUTPUT
echo "DOCKER_TAGS=nosqlbench/nosqlbench:${PREVIEW_VERSION},nosqlbench/nosqlbench:5.23-preview,nosqlbench/nosqlbench:preview" >> $GITHUB_ENV
echo "DOCKER_TAGS=nosqlbench/nosqlbench:${PREVIEW_VERSION},nosqlbench/nosqlbench:5.23-preview,nosqlbench/nosqlbench:preview" >> $GITHUB_OUTPUT
- name: build preview revision
run: |
# mvn clean verify -Drevision="${{ env.PREVIEW_VERSION }}" -P enable-container-tests
# disable container tests until they are fixed
mvn -U clean verify -Drevision="${{ env.PREVIEW_VERSION }}"
- name: Setup docker buildx
uses: docker/setup-buildx-action@v4
- name: docker hub login
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: docker test build
uses: docker/build-push-action@v7
with:
context: .
file: Dockerfile
pull: true
push: false
load: true
tags: ${{ env.DOCKER_TAGS }}
- name: sanity check docker image
run: |
docker run --rm nosqlbench/nosqlbench:${{ env.PREVIEW_VERSION }} --version
- name: bundle artifacts
run: |
pwd
ls -l
mkdir staging
cp nb5/target/nb5.jar nb5/target/nb5 staging
- name: upload artifacts
uses: actions/upload-artifact@v7
with:
name: binaries
path: staging
- name: generate javadoc
run: mvn javadoc:aggregate-jar
continue-on-error: false
- name: upload javadoc
uses: actions/upload-artifact@v7
with:
name: javadocs
path: target/nosqlbench-*-javadoc.jar
# Not sure if these are intended with the new flow, but its absence
# is breaking downstream jobs, so adding it here as a temporary
# remedy for now
- name: export docs
if: success()
run: nb5/target/nb5 export-docs
- name: upload docs artifact
if: success()
uses: actions/upload-artifact@v7
with:
name: exported-docs
path: exported_docs.zip
- name: prepare release summary
id: prepare_summary
run: |
#summary=$(scripts/release-notes.sh)
summary=$(cat PREVIEW_NOTES.md)
summary="${summary//'%'/'%25'}"
summary="${summary//$'\n'/'%0A'}"
summary="${summary//$'\r'/'%0D'}"
echo "release_summary=$summary" >> $GITHUB_STATE
- name: bump minor version
run: |
scripts/bump-minor-version
- name: docker push to hub
uses: docker/build-push-action@v7
with:
context: .
platforms: linux/amd64,linux/arm64
file: Dockerfile
pull: true
push: true
tags: ${{ env.DOCKER_TAGS }}
# https://github.com/softprops/action-gh-release
- name: create github release
uses: softprops/action-gh-release@v3.0.1
if: startsWith(github.ref, 'refs/tags/')
with:
# body: ${{ steps.prepare_summary.outputs.release_summary }}
# body_path: PREVIEW_NOTES.md
draft: false
prerelease: true
generate_release_notes: true
name: Preview ${{ env.PREVIEW_VERSION }}
fail_on_unmatched_files: true
tag_name: ${{ env.PREVIEW_VERSION }}
token: ${{ secrets.GITHUB_TOKEN }}
files: |
nb5/target/nb5
nb5/target/nb5.jar
# - name: create github release
# id: create_github_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ env.PREVIEW_VERSION }}
# release_name: Release ${{ env.PREVIEW_VERSION }}
# draft: false
# prerelease: true
# body: ${{ steps.prepare_summary.outputs.release_summary }}
#
# - name: upload nb.jar to github release
# id: upload-nb-jar
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_github_release.outputs.upload_url }}
# asset_path: nb5/target/nb5.jar
# asset_name: nb5.jar
# asset_content_type: application/octet-stream
#
# - name: upload nb binary to github release
# id: upload-nb-binary
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_github_release.outputs.upload_url }}
# asset_path: nb5/target/nb5
# asset_name: nb5
# asset_content_type: application/octet-stream
# - name: Archive Test Results
# if: always()
# uses: actions/upload-artifact@v3
# with:
# name: test-results
# path: |
# [a-zA-Z]**/logs/*
## This triggers a preview build by cascading the tag to the builddocs repo.
## The builddocs repo then pushes to preview or release depending on the tag.
#
# preview-docs:
# needs: preview-build
# runs-on: ubuntu-22.04
# steps:
# - name: import env vars
# run: |
# echo "PREVIEW_VERSION=${{ needs.preview-build.outputs.preview_version }}" >> $GITHUB_ENV
# echo "DOCKER_TAGS=${{ needs.preview-build.outputs.docker_tags }}" >> $GITHUB_ENV
#
# - name: checkout build docs
# uses: actions/checkout@v7
# with:
# repository: nosqlbench/nosqlbench-build-docs
# path: build-docs
#
# - name: download exported_docs
# uses: actions/download-artifact@v4
# with:
# name: exported-docs
# path: build-docs
#
# - name: overlay docs changes and push
# run: |
# set -x
# cd build-docs
# ./doimport.sh
# rm exported_docs.zip
# git config --global user.email "${{ secrets.NBDROID_EMAIL }}"
# git config --global user.name "${{ secrets.NBDROID_NAME }}"
# git add .
# git tag -f ${{ env.PREVIEW_VERSION }}
# git commit -m"docs update for ${{ env.PREVIEW_VERSION }}"
# git push
#
# javadocs:
# needs: preview-docs
# runs-on: ubuntu-22.04
# steps:
# - name: import env vars
# run: |
# echo "PREVIEW_VERSION=${{ needs.preview-build.outputs.preview_version }}" >> $GITHUB_ENV
# echo "DOCKER_TAGS=${{ needs.preview-build.outputs.docker_tags }}" >> $GITHUB_ENV
#
# - name: checkout javadocs
# uses: actions/checkout@v7
# with:
# repository: nosqlbench/nosqlbench-javadocs
# path: javadocs
#
# - name: download javadocs
# uses: actions/download-artifact@v4
# with:
# name: javadocs
# path: javadocs
#
# - name: overlay javadocs changes and push
# run: |
# set -x
# git config --global user.email "${{ secrets.NBDROID_EMAIL }}"
# git config --global user.name "${{ secrets.NBDROID_NAME }}"
# cd javadocs
# ./refresh.sh preview
# git add .
# CHANGES=$(git status --porcelain 2>/dev/null| wc -l)
# echo "found $CHANGES to push for javadocs updates"
# if (( $CHANGES > 0 ))
# then
# git commit -m"javadocs update for ${{ env.PREVIEW_VERSION }}"
# git push
# fi