From e0f79c5a7dd78c030fe04f5b087dc6ae5e433f8e Mon Sep 17 00:00:00 2001 From: Volodymyr Kit Date: Tue, 7 Jan 2025 18:48:54 +0200 Subject: [PATCH 1/2] chore(sdk): skip[ unit tests for custom golang build Signed-off-by: Volodymyr Kit --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2960640..83e83a37 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: cp ../wallet-sdk/cmd/wallet-sdk-gomobile/gopatches/* ./ git apply cmd_cgo__fix_unaligned_arguments_typedmemmove_crash_on_iOS.patch git revert 3560cf0afb3c29300a6c88ccd98256949ca7a6f6 - cd src && ./all.bash + cd src && ./make.bash - name: Derive the new version run: | echo "new version" @@ -103,7 +103,7 @@ jobs: cp ../wallet-sdk/cmd/wallet-sdk-gomobile/gopatches/* ./ git apply cmd_cgo__fix_unaligned_arguments_typedmemmove_crash_on_iOS.patch git revert 3560cf0afb3c29300a6c88ccd98256949ca7a6f6 - cd src && ./all.bash + cd src && ./make.bash - name: Derive the new version run: | echo "new version" From 9b942f48b8fc7f022e17235d3eb9e3013c51ef5b Mon Sep 17 00:00:00 2001 From: Volodymyr Kit Date: Tue, 7 Jan 2025 18:53:54 +0200 Subject: [PATCH 2/2] chore(sdk): build on every push Signed-off-by: Volodymyr Kit --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83e83a37..62057f2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,8 +11,8 @@ env: on: push: - tags: - - '*' + pull_request: + branches: [ main ] jobs: PublishAndroidSDKRelease: