Make release #28
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: Make release | |
on: | |
workflow_dispatch: | |
inputs: | |
release_type: | |
type: choice | |
description: Release type | |
options: | |
- major | |
- minor | |
- patch | |
default: minor | |
jobs: | |
make-release-linux: | |
runs-on: [ "self-hosted", Linux, X64, "aws_autoscaling"] | |
env: | |
CONTAINER_TMP: /opt/ | |
HOST_TMP: /home/runner/work/_temp/ | |
DEBIAN_FRONTEND: noninteractive | |
BOOST_VERSION: "1.83.0" | |
container: | |
image: ubuntu:22.04 | |
volumes: | |
- /home/runner/work/_temp/:/opt/ | |
steps: | |
- name: Install Git CLI for Ubuntu container | |
# GH runner image does not need it | |
run: | | |
apt-get update | |
apt-get install git -y | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: Install dependencies | |
uses: ./.github/actions/composite-install-dependecies | |
- name: Print toolchain information | |
run: | | |
git --version | |
cc --version | |
cmake --version | |
# Workaround: https://github.com/actions/checkout/issues/1169 | |
- name: Mark directory as safe | |
run: | | |
git config --system --add safe.directory $PWD | |
- name: Install boost | |
uses: MarkusJx/[email protected] | |
id: install-boost | |
with: | |
# A list of supported versions can be found here: | |
# https://github.com/MarkusJx/prebuilt-boost/blob/main/versions-manifest.json | |
boost_version: ${{ env.BOOST_VERSION }} | |
boost_install_dir: ${{ env.CONTAINER_TMP }} | |
platform_version: 22.04 | |
toolset: gcc | |
arch: x86 | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install aws tools | |
run: | | |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" | |
unzip awscliv2.zip | |
./aws/install | |
pip3 install mkrepo | |
# Workaround: https://github.com/actions/checkout/issues/1169 | |
- name: Mark directory as safe | |
run: | | |
git config --system --add safe.directory $PWD | |
- name: Compute release number | |
env: | |
RELEASE_TYPE: ${{ inputs.release_type }} | |
run: | | |
LATEST_TAG=`git describe --tags | cut -d'-' -f1 | tr -d v` | |
MAJOR=`echo $LATEST_TAG | cut -d'.' -f1` | |
MINOR=`echo $LATEST_TAG | cut -d'.' -f2` | |
PATCH=`echo $LATEST_TAG | cut -d'.' -f3` | |
case $RELEASE_TYPE in | |
major) | |
MAJOR=$((MAJOR+1)) | |
MINOR=0 | |
PATCH=0 | |
;; | |
minor) | |
MINOR=$((MINOR+1)) | |
PATCH=0 | |
;; | |
patch) | |
PATCH=$((PATCH+1)) | |
;; | |
*) | |
echo "Unknown release type" | |
exit 1 | |
;; | |
esac | |
echo "VERSION=$MAJOR.$MINOR.$PATCH" >> $GITHUB_ENV | |
echo "VERSION=$MAJOR.$MINOR.$PATCH" | |
- name: Configure CMake | |
env: | |
BOOST_ROOT: "${{ steps.install-boost.outputs.BOOST_ROOT }}" | |
run: | | |
cmake -G "Unix Makefiles" \ | |
-DBoost_ARCHITECTURE=-x64 \ | |
-B build \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DBoost_USE_STATIC_LIBS=ON \ | |
-DPROOF_PRODUCER_VERSION=${{ env.VERSION }} . | |
- name: Build packages | |
run: | | |
make -C build package -j$(nproc) | |
- name: Create release | |
uses: ncipollo/release-action@v1 | |
with: | |
name: "proof-producer-v${{ env.VERSION }}" | |
tag: "v${{ env.VERSION }}" | |
artifacts: "build/proof-producer_*.deb" | |
- name: Upload packages to repository | |
env: | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} | |
run: | | |
PROOF_PRODUCER_PACKAGE=`ls build/proof-producer_*.deb | cut -d'/' -f2` | |
POOL="ubuntu/pool/main/z/proof-producer" | |
aws s3api put-object --bucket deb.nil.foundation --key $POOL/$PROOF_PRODUCER_PACKAGE --body build/$PROOF_PRODUCER_PACKAGE | |
mkrepo s3://deb.nil.foundation/ubuntu/ |