Tweak/markups and TestTransaction builder #1257
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: Build scrypto-builder image | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
- release\/* | |
pull_request: | |
jobs: | |
tags: | |
runs-on: ubuntu-latest | |
outputs: | |
tag: ${{ steps.setup_tags.outputs.tag }} | |
steps: | |
- uses: RDXWorks-actions/checkout@main | |
with: | |
fetch-depth: 0 | |
- id: setup_tags | |
run: echo "tag=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
build-amd: | |
permissions: | |
contents: read | |
id-token: write | |
packages: write | |
pull-requests: write | |
needs: tags | |
uses: radixdlt/public-iac-resuable-artifacts/.github/workflows/docker-build.yml@main | |
with: | |
runs_on: gh-runner-scrypto-ubuntu-jammy-16-cores | |
image_registry: "docker.io" | |
image_organization: "radixdlt" | |
image_name: "private-scrypto-builder" | |
tag: ${{ needs.tags.outputs.tag }} | |
context: "." | |
dockerfile: "Dockerfile" | |
platforms: "linux/amd64" | |
provenance: "false" | |
scan_image: true | |
snyk_target_ref: ${{ github.ref_name }} | |
enable_dockerhub: false | |
secrets: | |
role_to_assume: ${{ secrets.DOCKERHUB_RELEASER_ROLE }} | |
build-scrypto: | |
permissions: | |
contents: read | |
id-token: write | |
needs: [tags, build-amd] | |
runs-on: ubuntu-latest | |
steps: | |
## Login to Docker Hub taken from: https://github.com/radixdlt/public-iac-resuable-artifacts/blob/main/.github/workflows/docker-build.yml#L243 | |
## Private Repo credentials | |
# This is version v2.2.0 | |
# https://github.com/aws-actions/configure-aws-credentials/releases/tag/v2.2.0 | |
- name: "Configure AWS credentials (Private)" | |
uses: RDXWorks-actions/configure-aws-credentials@main | |
with: | |
role-to-assume: arn:aws:iam::308190735829:role/gh-common-secrets-read-access | |
aws-region: eu-west-2 | |
# This is version v1.0.4 | |
# https://github.com/aws-actions/configure-aws-credentials/releases/tag/v1.0.4 | |
- name: Read secrets from AWS Secrets Manager into environment variables (Private) | |
uses: RDXWorks-actions/aws-secretsmanager-get-secrets@main | |
with: | |
secret-ids: | | |
DOCKERHUB_PRIVATE, github-actions/common/dockerhub-credentials | |
parse-json-secrets: true | |
- name: Login to Docker Hub (Private) | |
uses: RDXWorks-actions/login-action@master | |
with: | |
username: ${{env.DOCKERHUB_PRIVATE_USERNAME}} | |
password: ${{env.DOCKERHUB_PRIVATE_TOKEN}} | |
- uses: RDXWorks-actions/checkout@main | |
- name: Pull scrypto-builder docker image | |
run: | |
DOCKER_DEFAULT_PLATFORM=linux/amd64 docker pull radixdlt/private-scrypto-builder:${{ needs.tags.outputs.tag }} | |
- name: Build scrypto example using scrypto-builder | |
run: | | |
cp -r examples/everything test_package | |
rev=$(/usr/bin/git log -1 --format='%H') | |
sed -e "s/<replace-it-with-proper-revision>/$rev/g" test_package/Cargo.toml_for_scrypto_builder > test_package/Cargo.toml | |
docker run \ | |
-v $(pwd)/test_package:/src \ | |
radixdlt/private-scrypto-builder:${{ needs.tags.outputs.tag }} | |
- name: Check WASM size | |
run: | |
# Expected WASM size, when building with scrypto-builder = ~150kB | |
# + 1kB tolerance = 151 kB (154624 B) | |
bash ./assert_file_size.sh ./test_package/target/wasm32-unknown-unknown/release/everything.wasm 154624 |