Skip to content

Commit

Permalink
Add release flow for rosetta
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilKWarmdahl committed Nov 19, 2024
1 parent 5ecfcd0 commit 1cf3853
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Build and Push rosetta

on:
push:
branches:
- ekw/SRE-999/release-rosetta
tags:
- "*.*.*"

env:
RUST_IMAGE_TAG: '1.73.0'
OUTFOLDER: "s3://distribution.concordium.software/tools"
IAM_ROLE: "arn:aws:iam::192549843005:role/github_rosetta"

permissions:
id-token: write
contents: read

jobs:
release-rosetta-macos:
runs-on: macos-latest
environment: release
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
submodules: recursive

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: "eu-west-1"
role-to-assume: ${{ env.IAM_ROLE }}
role-session-name: ReleaseRosettaSession

- name: Get the rosetta version
run: |
CARGO_VERSION=$(yq .package.version "Cargo.toml")
if [ ! "${{ github.ref_name }}" = "$CARGO_VERSION" ] ; then
echo "::error::$CARGO_VERSION does not match ${{ github.ref_name }}."
exit 1
fi
fi
echo "ROSETTA_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
echo "OUTFILE=${{ env.OUTFOLDER }}/macos/concordium-rosetta-${{ env.ROSATTE_VERSION }}" >> $GITHUB_ENV
- name: Check if version exist in s3
run: |
set +e
output=$(aws s3 ls "${{ env.OUTFILE }}")
ec=$?
if [ $ec -eq "0" ]; then
echo "Objects found ${{ env.OUTFILE }}"
exit 1
elif [ $ec -ne "1"]; then
echo "$output"
fi
- name: Build
run: |
rustup default ${{ env.RUST_IMAGE_TAG }}
cargo run --release
- name: Publish
run: |
echo ${{ env.OUTFILE }}
ls ./target/release/
# aws s3 cp ./target/release/concordium-rosetta ${{ env.OUTFILE }}

0 comments on commit 1cf3853

Please sign in to comment.