Skip to content

Commit e09443c

Browse files
authored
Merge pull request #177 from SpineEventEngine/release-1.8.2
Release 1.8.2
2 parents 2a6e934 + 23ed230 commit e09443c

File tree

166 files changed

+1011
-545
lines changed

Some content is hidden

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

166 files changed

+1011
-545
lines changed
786 Bytes
Binary file not shown.

.github/keys/deploy_key_rsa.gpg

2.15 KB
Binary file not shown.

.github/keys/firebase-sa.json.gpg

1.67 KB
Binary file not shown.

.github/keys/gcs-auth-key.json.gpg

1.68 KB
Binary file not shown.
1.69 KB
Binary file not shown.

.github/keys/spine-dev.json.gpg

1.68 KB
Binary file not shown.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Build under Ubuntu
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v3
12+
with:
13+
submodules: 'true'
14+
15+
- uses: actions/setup-java@v3
16+
with:
17+
java-version: 8
18+
distribution: zulu
19+
20+
# This operation is specific to `gcloud-java` repository only.
21+
- name: Decrypt the credentials for the Spine-Dev service account
22+
run: ./scripts/decrypt.sh "$SPINE_DEV_KEY" ./.github/keys/spine-dev.json.gpg ./spine-dev.json
23+
env:
24+
SPINE_DEV_KEY: ${{ secrets.SPINE_DEV_KEY }}
25+
26+
# The OS-managed Google Cloud SDK does not provide a Datastore emulator.
27+
- name: Remove the OS-managed Google Cloud SDK
28+
run: sudo apt-get remove google-cloud-sdk
29+
30+
- name: Install Google Cloud SDK utility
31+
run: chmod +x ./scripts/install-gcloud.sh && ./scripts/install-gcloud.sh
32+
33+
# Appends the `gcloud` utility to the PATH for this particular terminal session.
34+
- name: Install the Datastore emulator and Cloud Beta tools
35+
run: >
36+
source ~/google-cloud-sdk/path.bash.inc
37+
&& gcloud components install cloud-datastore-emulator --quiet
38+
&& gcloud components install beta --quiet
39+
40+
# Appends the `gcloud` utility to the PATH for this particular terminal session.
41+
- name: Start the Datastore emulator
42+
run: >
43+
source ~/google-cloud-sdk/path.bash.inc
44+
&& ./scripts/start-datastore.sh &
45+
46+
- name: Build project and run tests
47+
run: >
48+
source ~/google-cloud-sdk/path.bash.inc
49+
&& ./gradlew build --stacktrace

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2020, TeamDev. All rights reserved.
2+
# Copyright 2022, TeamDev. All rights reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

.travis.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020, TeamDev. All rights reserved.
2+
* Copyright 2022, TeamDev. All rights reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)