installs libssl-dev #12
Workflow file for this run
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: Github release for the repo | |
permissions: | |
contents: write | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
cargo_build: | |
name: Cargo build | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-apple-darwin | |
asset_name: x86_64-apple | |
os: macos-latest | |
- target: aarch64-apple-darwin | |
asset_name: arm-apple | |
os: macos-latest | |
- target: x86_64-unknown-linux-musl | |
asset_name: x86_64-linux | |
os: ubuntu-20.04 | |
container: quay.io/tembo/muslrust:1.71.0-stable | |
- target: aarch64-unknown-linux-musl | |
asset_name: arm-linux | |
os: ubuntu-20.04 | |
container: messense/rust-musl-cross:aarch64-musl | |
runs-on: ${{ matrix.os }} | |
container: | |
image: ${{ matrix.container }} | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Cargo build | |
working-directory: ./tembo-cli | |
id: cargo_build | |
run: | | |
set -x | |
if [ ${{ matrix.os }} -eq "ubuntu-20.04" ]; then | |
apt update -y | |
apt install pkg-config libssl-dev -y | |
elif [ ${{ matrix.os }} -eq "macos-latest" ]; then | |
brew install pkg-config | |
fi | |
rustup target add ${{ matrix.target }} | |
cargo build --release --target=${{ matrix.target }} | |
TEMBO_VERSION=$(target/${{ matrix.target }}/release/tembo --version) | |
TEMBO_CLI_NAME="$(echo $TEMBO_VERSION | sed 's/ /-/g')" | |
echo "TEMBO_CLI_NAME=$TEMBO_CLI_NAME" >> $GITHUB_ENV | |
git config --global --add safe.directory '*' | |
- name: Generate changelog | |
id: changelog | |
uses: metcalfc/changelog-generator@v4.2.0 | |
with: | |
myToken: ${{ secrets.GITHUB_TOKEN }} | |
fetch: false | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: tembo-cli/target/${{ matrix.target }}/release/tembo | |
asset_name: ${{ env.TEMBO_CLI_NAME }}-${{ matrix.asset_name }} | |
prerelease: true | |
tag: ${{ github.ref }} | |
body: ${{ steps.changelog.outputs.changelog }} | |