chore: Release cheminee version 0.1.31 #37
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
on: | |
push: | |
tags: | |
- '*' | |
env: | |
REGISTRY: ghcr.io | |
REPO_LOWER: rdkit-rs/cheminee | |
jobs: | |
build: | |
env: | |
ARCH: amd64 | |
runs-on: ${{ matrix.buildjet }} | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
buildjet: [ buildjet-16vcpu-ubuntu-2204, buildjet-16vcpu-ubuntu-2204-arm ] | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Set architecture variable | |
run: env; echo ARCH=$(uname -m) >> $GITHUB_ENV | |
- name: Run sccache-cache | |
uses: mozilla/sccache-action@eaed7fb9f8fb32adea8bd40d7f276f312de9beaf | |
with: | |
version: "v0.4.0-pre.10" | |
- name: Run sccache stat for check | |
shell: bash | |
run: ${SCCACHE_PATH} --show-stats | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential libssl-dev libboost-iostreams-dev libboost-serialization-dev pkg-config curl tar | |
- name: Install RDKit | |
run: | | |
cd /tmp | |
if [ $(dpkg --print-architecture) = "amd64" ]; then | |
curl -O https://rdkit-rs-debian.s3.eu-central-1.amazonaws.com/rdkit_2024_03_3_ubuntu_14_04_amd64.tar.gz | |
sudo tar xf rdkit_2024_03_3_ubuntu_14_04_amd64.tar.gz | |
else | |
curl -O https://rdkit-rs-debian.s3.eu-central-1.amazonaws.com/rdkit_2024_03_3_ubuntu_14_04_arm64.tar.gz | |
sudo tar xf rdkit_2024_03_3_ubuntu_14_04_arm64.tar.gz | |
fi | |
sudo mv /tmp/rdkit-Release_2024_03_3/Code /usr/local/include/rdkit | |
sudo mv /tmp/rdkit-Release_2024_03_3/build/lib/* /usr/lib/ | |
- name: Install latest stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Build cheminee | |
run: RUST_WRAPPER=$SCCACHE_PATH cargo build --release | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.REPO_LOWER }} | |
flavor: | | |
latest=false | |
tags: | | |
type=semver,pattern={{version}}-${{ env.ARCH }} | |
- name: Build and push | |
id: build | |
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Docker image size | |
run: docker history ${{ steps.meta.outputs.tags }} | |
- name: Run sccache stat for check | |
shell: bash | |
run: ${SCCACHE_PATH} --show-stats | |
push: | |
runs-on: buildjet-2vcpu-ubuntu-2204 | |
needs: [ build ] | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.REPO_LOWER }} | |
flavor: | | |
latest=false | |
tags: | | |
type=semver,pattern={{version}} | |
- name: Build manifest | |
run: | | |
docker manifest create ${{ steps.meta.outputs.tags }} ${{ steps.meta.outputs.tags }}-x86_64 ${{ steps.meta.outputs.tags }}-aarch64 | |
docker manifest push ${{ steps.meta.outputs.tags }} |