Skip to content

Commit 3c094dd

Browse files
authored
Merge pull request #148 from SpineEventEngine/release-1.8.2
Release 1.8.2
2 parents effb773 + 357a112 commit 3c094dd

116 files changed

Lines changed: 176 additions & 163 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
16+
- uses: actions/setup-java@v3
17+
with:
18+
java-version: 8
19+
distribution: zulu
20+
cache: gradle
21+
22+
- name: Pull config
23+
run: git submodule update --init --recursive
24+
25+
- name: Build project and run tests
26+
shell: bash
27+
run: ./gradlew build --stacktrace
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build under Windows
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- 1.x-dev
8+
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- uses: actions/setup-java@v3
17+
with:
18+
java-version: 8
19+
distribution: zulu
20+
cache: gradle
21+
22+
- name: Pull config
23+
run: git submodule update --init --recursive
24+
25+
- name: Run tests with Gradle
26+
run: gradlew.bat build
27+
shell: cmd

.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 & 41 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.

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 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.

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 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.

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 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.

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 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.

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

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)