forked from lightsail-network/java-stellar-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request lightsail-network#532 from stellar/soroban
Soroban to mainline, 0.41.0 release prep
- Loading branch information
Showing
658 changed files
with
44,249 additions
and
4,911 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,134 @@ | ||
name: "Test and Deploy" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
release: | ||
types: | ||
- created | ||
|
||
env: | ||
JAVA_VERSION: '17' | ||
JAVA_DISTRIBUTION: 'microsoft' | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: ${{ env.JAVA_DISTRIBUTION }} | ||
- name: Test | ||
run: ./gradlew check | ||
|
||
build: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: ${{ env.JAVA_DISTRIBUTION }} | ||
- name: Build | ||
run: ./gradlew build | ||
- name: Persist JAR Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: libs | ||
path: build/libs/*.jar | ||
|
||
javadoc: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: ${{ env.JAVA_DISTRIBUTION }} | ||
- name: Generate Documentation | ||
run: ./gradlew javadoc | ||
- name: Persist Documentation | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: javadoc | ||
path: javadoc | ||
|
||
android-test: | ||
needs: build | ||
runs-on: macos-13 | ||
name: android-test (api ${{ matrix.emulator.api-level }}) | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# minSdk and targetSdk, see ${project_root}/android_test/app/build.gradle.kts | ||
# TODO: Investigate why it is unstable on API 33. | ||
emulator: [ | ||
{ api-level: 26, target: google_apis }, | ||
{ api-level: 32, target: playstore } | ||
] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: Download JAR Artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: libs | ||
path: android_test/app/libs/ | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: ${{ env.JAVA_DISTRIBUTION }} | ||
- name: run tests | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
with: | ||
working-directory: ./android_test | ||
api-level: ${{ matrix.emulator.api-level }} | ||
target: ${{ matrix.emulator.target }} | ||
script: ./gradlew connectedCheck | ||
arch: x86_64 | ||
profile: 'pixel_2' | ||
|
||
deploy: | ||
needs: [ build, javadoc ] # TODO: add android-test when it is stable. | ||
permissions: | ||
contents: write | ||
if: github.event_name == 'release' && github.event.action == 'created' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Download JAR Artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: libs | ||
path: libs | ||
- name: Download Java Documentation | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: javadoc | ||
path: javadoc | ||
- name: Archive Documentation | ||
run: tar -czf stellar-sdk-javadoc.tar.gz javadoc | ||
- name: Upload artifacts to GitHub Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
libs/*.jar | ||
stellar-sdk-javadoc.tar.gz | ||
- name: Upload Documentation to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: javadoc | ||
|
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
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,37 @@ | ||
XDRS = xdr/Stellar-SCP.x \ | ||
xdr/Stellar-ledger-entries.x \ | ||
xdr/Stellar-ledger.x \ | ||
xdr/Stellar-overlay.x \ | ||
xdr/Stellar-transaction.x \ | ||
xdr/Stellar-types.x \ | ||
xdr/Stellar-contract-env-meta.x \ | ||
xdr/Stellar-contract-meta.x \ | ||
xdr/Stellar-contract-spec.x \ | ||
xdr/Stellar-contract.x \ | ||
xdr/Stellar-internal.x \ | ||
xdr/Stellar-contract-config-setting.x | ||
|
||
XDRGEN_COMMIT=f0c41458ca0b66b4649b18deddc9f7a11199f1f9 | ||
XDRNEXT_COMMIT=9ac02641139e6717924fdad716f6e958d0168491 | ||
|
||
.PHONY: xdr xdr-clean xdr-update | ||
|
||
xdr-generate: $(XDRS) | ||
docker run -it --rm -v $$PWD:/wd -w /wd ruby /bin/bash -c '\ | ||
gem install specific_install -v 0.3.8 && \ | ||
gem specific_install https://github.com/stellar/xdrgen.git -b $(XDRGEN_COMMIT) && \ | ||
xdrgen \ | ||
--language java \ | ||
--namespace org.stellar.sdk.xdr \ | ||
--output src/main/java/org/stellar/sdk/xdr/ \ | ||
$(XDRS)' | ||
./gradlew :spotlessApply | ||
|
||
xdr/%.x: | ||
curl -Lsf -o $@ https://raw.githubusercontent.com/stellar/stellar-xdr/$(XDRNEXT_COMMIT)/$(@F) | ||
|
||
xdr-clean: | ||
rm xdr/*.x || true | ||
rm src/main/java/org/stellar/sdk/xdr/*.java || true | ||
|
||
xdr-update: xdr-clean xdr-generate |
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/caches | ||
/.idea/libraries | ||
/.idea/modules.xml | ||
/.idea/workspace.xml | ||
/.idea/navEditor.xml | ||
/.idea/assetWizardSettings.xml | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild | ||
.cxx | ||
local.properties |
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,4 @@ | ||
# Android Test | ||
This folder contains a simple project for testing whether stellar-sdk can be successfully integrated into an Android project. | ||
|
||
This project is based on a template project created using Android Studio, and I have tried my best not to make any excessive modifications. |
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 @@ | ||
/build |
Oops, something went wrong.