-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ecfcd0
commit 1cf3853
Showing
1 changed file
with
69 additions
and
0 deletions.
There are no files selected for viewing
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
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 }} |