Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
senseiwells committed Oct 17, 2024
1 parent 04aad60 commit a032c58
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 19 deletions.
41 changes: 27 additions & 14 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,33 @@
name: Dev Build
on:
push:
branches: [ '*' ]
name: build
on: [pull_request, push]

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
# Use these Java versions
java: [21]
# and run on both Linux and Windows
os: [ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v3
- name: checkout repository
uses: actions/checkout@v4
- name: validate gradle wrapper
uses: gradle/actions/wrapper-validation@v3
- name: setup jdk ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- run: ./gradlew build --stacktrace --no-daemon
- uses: actions/upload-artifact@v3
java-version: ${{ matrix.java }}
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: capture build artifacts
if: ${{ runner.os == 'Linux' && matrix.java == '21' }} # Only upload artifacts built from latest java on one OS
uses: actions/upload-artifact@v4
with:
name: Artifacts from ${{ github.sha }}
path: build/libs
name: Artifacts
path: build/libs/
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {
modCompileOnly(explosion.fabric(libs.c2me))
modCompileOnly(libs.servux)
modCompileOnly(libs.syncmatica)
modCompileOnly(libs.voicechat)
modImplementation(libs.voicechat)
implementation(libs.voicechat.api)

shade(modImplementation(libs.replay.studio.get())!!)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ object ReplayVoicechatPlugin: VoicechatPlugin, ServerReplayPlugin {
override fun initialize(api: VoicechatApi) {
this.decoder = api.createDecoder()

if (!ServerReplay.config.recordVoiceChat) {
ServerReplay.logger.info("Not currently recording voice chat in replays, you must enabled this in the config")
}

@Suppress("DEPRECATION")
ServerReplayPluginManager.registerPlugin(this)
}
Expand Down

0 comments on commit a032c58

Please sign in to comment.