Skip to content

Commit 10b6154

Browse files
authored
Merge pull request #86 from SpineEventEngine/release-1.8.2
Release 1.8.2
2 parents f8932a3 + a70c1f3 commit 10b6154

Some content is hidden

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

52 files changed

+114
-69
lines changed

.github/workflows/ubuntu.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Build under Ubuntu
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- 1.x-dev
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
submodules: 'true'
17+
18+
- uses: actions/setup-java@v3
19+
with:
20+
java-version: 8
21+
distribution: zulu
22+
23+
- name: Update APT
24+
shell: bash
25+
run: chmod +x ./config/scripts/update-apt.sh
26+
&& ./config/scripts/update-apt.sh
27+
28+
- name: Install Dart
29+
shell: bash
30+
run: sudo apt-get install dart
31+
32+
- name: Activate `protoc-plugin`
33+
shell: bash
34+
run: dart pub global activate protoc_plugin
35+
36+
- name: Activate `dart_code_gen`
37+
shell: bash
38+
run: dart pub global activate dart_code_gen
39+
40+
- name: Run Gradle build
41+
shell: bash
42+
run: ./gradlew build
43+
44+
45+

.github/workflows/win.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@ on:
44
pull_request:
55
branches:
66
- master
7+
- 1.x-dev
78

89
jobs:
910
build:
1011

1112
runs-on: windows-latest
1213

1314
steps:
14-
- uses: actions/checkout@v1
15-
16-
- name: Set up JDK 1.8
17-
uses: actions/setup-java@v1
15+
- uses: actions/checkout@v3
1816
with:
19-
java-version: 1.8
17+
submodules: 'true'
2018

21-
- name: Pull config
22-
run: git submodule update --init --recursive
19+
- uses: actions/setup-java@v3
20+
with:
21+
java-version: 8
22+
distribution: zulu
2323

2424
- name: Run tests with Gradle
2525
shell: cmd
2626
run: >
2727
choco install dart-sdk --limitoutput
2828
&& refreshenv
29-
&& pub global activate protoc_plugin
30-
&& pub global activate dart_code_gen
29+
&& dart pub global activate protoc_plugin
30+
&& dart pub global activate dart_code_gen
3131
&& gradlew.bat build

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2021, 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.

README.md

Lines changed: 1 addition & 1 deletion

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021, 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.

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021, 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.

buildSrc/src/main/kotlin/bootstrap-plugin.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021, 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.

buildSrc/src/main/kotlin/io/spine/gradle/internal/CheckVersionIncrement.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021, 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.

buildSrc/src/main/kotlin/io/spine/gradle/internal/IncrementGuard.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021, 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.

buildSrc/src/main/kotlin/io/spine/gradle/internal/RunBuild.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021, 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)