Revert "Add build/test job for Windows"

This reverts commit 6f1aa72a
This commit is contained in:
Erik C. Thauvin 2025-03-22 00:45:24 -07:00
parent 48b92c33fd
commit 7e58e5840f
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 4 additions and 62 deletions

View file

@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
java-version: [17, 21, 24]
kotlin-version: [1.9.25, 2.0.20, 2.1.20]
kotlin-version: [1.9.25, 2.0.20, 2.1.10]
steps:
- name: Checkout source repository
@ -56,30 +56,3 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
build-bld-windows:
runs-on: windows-latest
steps:
- name: Checkout source repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: "17"
- name: Download dependencies
run: bld.bat download
shell: cmd
- name: Compile source
run: bld.bat compile
shell: cmd
- name: Run tests
run: bld.bat jacoco
shell: cmd

View file

@ -1,34 +1,3 @@
/*
* ReleaseInfo.kt
*
* Copyright 2004-2025 Erik C. Thauvin (erik@thauvin.net)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* Neither the name of this project nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This file is automatically generated
* Do not modify! -- ALL CHANGES WILL BE ERASED!
@ -45,12 +14,12 @@ import java.time.ZoneId
*/
object ReleaseInfo {
const val PROJECT = "mobibot"
const val VERSION = "0.8.0-rc+20250102175731"
const val VERSION = "0.8.0-rc+20250322004101"
@JvmField
@Suppress("MagicNumber")
val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant(
Instant.ofEpochMilli(1735869451156L), ZoneId.systemDefault()
Instant.ofEpochMilli(1742629261438L), ZoneId.systemDefault()
)
const val WEBSITE = "https://mobitopia.org/mobibot/"

View file

@ -287,7 +287,7 @@ class Tell(private val serialObject: String) : AbstractCommand() {
// All keyword
private const val TELL_ALL_KEYWORD = "all"
//T he delete command.
// The delete command.
private const val TELL_DEL_KEYWORD = "del"
}