Skip to content

Commit 57a99ad

Browse files
authoredJul 27, 2021
Merge pull request #1023 from eclipse/ag_snapshot-updates
Update versions for snapshot testing
2 parents 5e9d1f6 + f744cf3 commit 57a99ad

File tree

62 files changed

+968
-3052
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+968
-3052
lines changed
 

‎.github/workflows/example-sanity-check.yml

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -25,39 +25,28 @@ jobs:
2525
with:
2626
access_token: ${{ github.token }}
2727
- uses: actions/checkout@v2
28-
- uses: ./.github/actions/update-deps-linux
29-
- uses: ./.github/actions/install-protobuf-linux
30-
- uses: ./.github/actions/install-cmake-linux
3128
- name: Set up Java for publishing to GitHub Packages
3229
uses: actions/setup-java@v1
3330
with:
3431
java-version: 1.8
35-
server-id: sonatype-nexus-snapshots
36-
server-username: MAVEN_USERNAME
37-
server-password: MAVEN_PASSWORD
38-
gpg-private-key: ${{ secrets.SONATYPE_GPG_KEY }}
39-
gpg-passphrase: MAVEN_GPG_PASSPHRASE
4032
- name: Build on linux-arm64
4133
shell: bash
4234
env:
4335
DEBIAN_FRONTEND: noninteractive
4436
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45-
DEPLOY: 1
46-
BUILD_USING_MAVEN: 1
47-
TARGET_OS: linux
48-
CURRENT_TARGET: arm64
49-
PUBLISH_TO: ossrh
50-
DEPLOY_TO: ossrh
51-
MAVEN_USERNAME: ${{ secrets.SONATYPE_USER_1 }}
52-
MAVEN_PASSWORD: ${{ secrets.SONATYPE_USER1_PASS }}
53-
MAVEN_GPG_PASSPHRASE: ${{ secrets.PACKAGES_GPG_PASS }}
54-
5537
run: |
5638
mvn --version
57-
cmake --version
58-
protoc --version
5939
for folder in `ls`; do
60-
mvn clean test
40+
if [[ -d "$folder" ]]; then
41+
cd "$folder"
42+
if test -f "pom.xml"; then
43+
mvn clean test
44+
fi
45+
cd ..
46+
fi
47+
48+
49+
6150
done
6251
6352

‎.github/workflows/run-sanity-checks.sh

Whitespace-only changes.

0 commit comments

Comments
 (0)