From e0da9866b34cca76310007897034561f00537775 Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 11:45:06 -0700 Subject: [PATCH 01/12] test --- src/com/amazon/ion/Decimal.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/amazon/ion/Decimal.java b/src/com/amazon/ion/Decimal.java index bde45ee1f1..41ecb0d7be 100644 --- a/src/com/amazon/ion/Decimal.java +++ b/src/com/amazon/ion/Decimal.java @@ -45,8 +45,7 @@ * consistent treatment of negative zeros in future releases, you may wish to * use {@link #bigDecimalValue} before performing those operations. */ -public class Decimal - extends BigDecimal +public class Decimal extends BigDecimal { private static final long serialVersionUID = 1L; From ae17c7f7a38aa98ad48fe87df1e987ed2a59414f Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 11:48:07 -0700 Subject: [PATCH 02/12] test --- .github/workflows/ion-test-driver.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ion-test-driver.yml b/.github/workflows/ion-test-driver.yml index 8c899374f2..65b653a282 100644 --- a/.github/workflows/ion-test-driver.yml +++ b/.github/workflows/ion-test-driver.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: PR-Content-Check: - uses: amazon-ion/ion-java/.github/workflows/PR-content-check.yml@master + uses: cheqianh/ion-java/.github/workflows/PR-content-check.yml@master ion-test-driver: runs-on: macos-10.15 From 456b374e323270715db8a9db25033346ae8151b4 Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 11:51:42 -0700 Subject: [PATCH 03/12] test --- .github/workflows/PR-content-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR-content-check.yml b/.github/workflows/PR-content-check.yml index 30ac8176f7..95359ed4e7 100644 --- a/.github/workflows/PR-content-check.yml +++ b/.github/workflows/PR-content-check.yml @@ -28,4 +28,4 @@ jobs: id: check-content run: | cd ion-new-commit - if [[ $(git log -1 --name-only) == *"src/"* ]] || [[ $(git log -1 --name-only) == *"ion/"* ]]; then echo "result=pass" >> $GITHUB_OUTPUT; else echo "result=fail" >> $GITHUB_OUTPUT; fi + if [[ $(git log -1 --name-only) == *"src/"* ]] || [[ $(git log -1 --name-only) == *"ion/"* ]]; then echo "result=pass" >> $GITHUB_OUTPUT && echo "pass"; else echo "result=fail" >> $GITHUB_OUTPUT && echo "pass"; fi From 0ac2ec35152fd74d3709b36462cda9a5663aad1d Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 11:53:42 -0700 Subject: [PATCH 04/12] test --- .github/workflows/PR-content-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR-content-check.yml b/.github/workflows/PR-content-check.yml index 95359ed4e7..a621515f15 100644 --- a/.github/workflows/PR-content-check.yml +++ b/.github/workflows/PR-content-check.yml @@ -28,4 +28,4 @@ jobs: id: check-content run: | cd ion-new-commit - if [[ $(git log -1 --name-only) == *"src/"* ]] || [[ $(git log -1 --name-only) == *"ion/"* ]]; then echo "result=pass" >> $GITHUB_OUTPUT && echo "pass"; else echo "result=fail" >> $GITHUB_OUTPUT && echo "pass"; fi + if [[ $(git log -1 --name-only) == *"src/"* ]] || [[ $(git log -1 --name-only) == *"ion/"* ]]; then echo "result=pass" ; else echo "result=fail"; fi From 44e18e79da00e1f08b8f4a98dd70a74f65add52a Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 11:54:52 -0700 Subject: [PATCH 05/12] test --- .github/workflows/ion-java-performance-regression-detector.yml | 2 +- .github/workflows/ion-test-driver.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ion-java-performance-regression-detector.yml b/.github/workflows/ion-java-performance-regression-detector.yml index 87b640ea23..c5f59fde02 100644 --- a/.github/workflows/ion-java-performance-regression-detector.yml +++ b/.github/workflows/ion-java-performance-regression-detector.yml @@ -7,7 +7,7 @@ on: [pull_request] jobs: PR-Content-Check: - uses: amazon-ion/ion-java/.github/workflows/PR-content-check.yml@master + uses: cheqianh/ion-java/.github/workflows/PR-content-check.yml@master detect-regression: name: Detect Regression diff --git a/.github/workflows/ion-test-driver.yml b/.github/workflows/ion-test-driver.yml index 65b653a282..8c899374f2 100644 --- a/.github/workflows/ion-test-driver.yml +++ b/.github/workflows/ion-test-driver.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: PR-Content-Check: - uses: cheqianh/ion-java/.github/workflows/PR-content-check.yml@master + uses: amazon-ion/ion-java/.github/workflows/PR-content-check.yml@master ion-test-driver: runs-on: macos-10.15 From c3cacfa314177b72a12053cb5f936cc6cfc4df35 Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 11:56:40 -0700 Subject: [PATCH 06/12] test --- .github/workflows/PR-content-check.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/PR-content-check.yml b/.github/workflows/PR-content-check.yml index a621515f15..834684e59c 100644 --- a/.github/workflows/PR-content-check.yml +++ b/.github/workflows/PR-content-check.yml @@ -24,6 +24,11 @@ jobs: fetch-depth: 0 path: ion-new-commit + - name: test + run: | + echo "???" + + - name: Check the content of the last commit id: check-content run: | From 5a56289076fa4b1c263530b821e28228fa0edd10 Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 11:58:05 -0700 Subject: [PATCH 07/12] test --- .github/workflows/ion-java-performance-regression-detector.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ion-java-performance-regression-detector.yml b/.github/workflows/ion-java-performance-regression-detector.yml index c5f59fde02..b29f2829b2 100644 --- a/.github/workflows/ion-java-performance-regression-detector.yml +++ b/.github/workflows/ion-java-performance-regression-detector.yml @@ -7,7 +7,7 @@ on: [pull_request] jobs: PR-Content-Check: - uses: cheqianh/ion-java/.github/workflows/PR-content-check.yml@master + uses: ./.github/workflows/PR-content-check.yml@master detect-regression: name: Detect Regression From bc382e96cda887a43bcc9d4f3e389ed02ef016b6 Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 11:59:58 -0700 Subject: [PATCH 08/12] test --- .github/workflows/PR-content-check.yml | 5 ----- .github/workflows/ion-test-driver.yml | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/PR-content-check.yml b/.github/workflows/PR-content-check.yml index 834684e59c..a621515f15 100644 --- a/.github/workflows/PR-content-check.yml +++ b/.github/workflows/PR-content-check.yml @@ -24,11 +24,6 @@ jobs: fetch-depth: 0 path: ion-new-commit - - name: test - run: | - echo "???" - - - name: Check the content of the last commit id: check-content run: | diff --git a/.github/workflows/ion-test-driver.yml b/.github/workflows/ion-test-driver.yml index 8c899374f2..bb437c242e 100644 --- a/.github/workflows/ion-test-driver.yml +++ b/.github/workflows/ion-test-driver.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: PR-Content-Check: - uses: amazon-ion/ion-java/.github/workflows/PR-content-check.yml@master + uses: amazon-ion/ion-java/.github/workflows/PR-content-check.yml ion-test-driver: runs-on: macos-10.15 From b2a928a72d914de95555f9d775b090f3393eaeda Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 12:00:56 -0700 Subject: [PATCH 09/12] test --- .github/workflows/ion-java-performance-regression-detector.yml | 2 +- .github/workflows/ion-test-driver.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ion-java-performance-regression-detector.yml b/.github/workflows/ion-java-performance-regression-detector.yml index b29f2829b2..4d22ab9715 100644 --- a/.github/workflows/ion-java-performance-regression-detector.yml +++ b/.github/workflows/ion-java-performance-regression-detector.yml @@ -7,7 +7,7 @@ on: [pull_request] jobs: PR-Content-Check: - uses: ./.github/workflows/PR-content-check.yml@master + uses: ./.github/workflows/PR-content-check.yml detect-regression: name: Detect Regression diff --git a/.github/workflows/ion-test-driver.yml b/.github/workflows/ion-test-driver.yml index bb437c242e..8c899374f2 100644 --- a/.github/workflows/ion-test-driver.yml +++ b/.github/workflows/ion-test-driver.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: PR-Content-Check: - uses: amazon-ion/ion-java/.github/workflows/PR-content-check.yml + uses: amazon-ion/ion-java/.github/workflows/PR-content-check.yml@master ion-test-driver: runs-on: macos-10.15 From bd8d1d3ed7ded007f0e980e2fb16e36a0265f235 Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 12:01:45 -0700 Subject: [PATCH 10/12] test --- src/com/amazon/ion/Decimal.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/amazon/ion/Decimal.java b/src/com/amazon/ion/Decimal.java index 41ecb0d7be..90670b4202 100644 --- a/src/com/amazon/ion/Decimal.java +++ b/src/com/amazon/ion/Decimal.java @@ -45,7 +45,8 @@ * consistent treatment of negative zeros in future releases, you may wish to * use {@link #bigDecimalValue} before performing those operations. */ -public class Decimal extends BigDecimal +public class Decimal + extends BigDecimal { private static final long serialVersionUID = 1L; From c5f1bfe8d5ea5152d2abed4791ef5fc5de02758d Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 13:37:01 -0700 Subject: [PATCH 11/12] reset --- .github/workflows/ion-java-performance-regression-detector.yml | 2 +- src/com/amazon/ion/Decimal.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ion-java-performance-regression-detector.yml b/.github/workflows/ion-java-performance-regression-detector.yml index 4d22ab9715..87b640ea23 100644 --- a/.github/workflows/ion-java-performance-regression-detector.yml +++ b/.github/workflows/ion-java-performance-regression-detector.yml @@ -7,7 +7,7 @@ on: [pull_request] jobs: PR-Content-Check: - uses: ./.github/workflows/PR-content-check.yml + uses: amazon-ion/ion-java/.github/workflows/PR-content-check.yml@master detect-regression: name: Detect Regression diff --git a/src/com/amazon/ion/Decimal.java b/src/com/amazon/ion/Decimal.java index 90670b4202..bde45ee1f1 100644 --- a/src/com/amazon/ion/Decimal.java +++ b/src/com/amazon/ion/Decimal.java @@ -46,7 +46,7 @@ * use {@link #bigDecimalValue} before performing those operations. */ public class Decimal - extends BigDecimal + extends BigDecimal { private static final long serialVersionUID = 1L; From 3f8c210ae74738d8a78785ba87c8a9c4d0a00ec1 Mon Sep 17 00:00:00 2001 From: Eric Chen Date: Thu, 4 May 2023 13:38:57 -0700 Subject: [PATCH 12/12] reset --- .github/workflows/PR-content-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR-content-check.yml b/.github/workflows/PR-content-check.yml index a621515f15..30ac8176f7 100644 --- a/.github/workflows/PR-content-check.yml +++ b/.github/workflows/PR-content-check.yml @@ -28,4 +28,4 @@ jobs: id: check-content run: | cd ion-new-commit - if [[ $(git log -1 --name-only) == *"src/"* ]] || [[ $(git log -1 --name-only) == *"ion/"* ]]; then echo "result=pass" ; else echo "result=fail"; fi + if [[ $(git log -1 --name-only) == *"src/"* ]] || [[ $(git log -1 --name-only) == *"ion/"* ]]; then echo "result=pass" >> $GITHUB_OUTPUT; else echo "result=fail" >> $GITHUB_OUTPUT; fi