Browse Source

Merge branch 'hotfix/v23.3.4'

pull/4258/head v23.3.4
Daniel Gibbs 2 years ago
parent
commit
300209368e
  1. 6
      .github/workflows/add-to-project.yml
  2. 11
      .github/workflows/details-check.yml
  3. 9
      .github/workflows/git-sync.yml
  4. 14
      .github/workflows/label-sponsors.yml
  5. 26
      .github/workflows/labeler.yml
  6. 14
      .github/workflows/lock.yml
  7. 19
      .github/workflows/potential-duplicates.yml
  8. 7
      .github/workflows/serverlist-validate.yml
  9. 9
      .github/workflows/trigger-docker-build.yml
  10. 8
      .github/workflows/update-copyright-years-in-license-file.yml
  11. 9
      .github/workflows/version-check.yml
  12. 7
      lgsm/modules/check_executable.sh
  13. 2
      lgsm/modules/core_functions.sh
  14. 2
      lgsm/modules/core_modules.sh
  15. 2
      lgsm/modules/info_game.sh
  16. 2
      linuxgsm.sh
  17. 2
      tests/tests_fctrserver.sh
  18. 2
      tests/tests_jc2server.sh
  19. 2
      tests/tests_mcserver.sh
  20. 2
      tests/tests_ts3server.sh

6
.github/workflows/add-to-project.yml

@ -1,4 +1,4 @@
name: Add to project name: Add to Project
on: on:
issues: issues:
types: types:
@ -7,10 +7,10 @@ on:
jobs: jobs:
add-to-project: add-to-project:
name: Add game server requests to project
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/[email protected] - name: Add to Project
uses: actions/[email protected]
with: with:
project-url: https://github.com/orgs/GameServerManagers/projects/11 project-url: https://github.com/orgs/GameServerManagers/projects/11
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

11
.github/workflows/details-check.yml

@ -1,5 +1,5 @@
name: Details Check
# This action will check that LinuxGSM is picking up game server config and parameter variables. # This action will check that LinuxGSM is picking up game server config and parameter variables.
name: Details Check
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
@ -16,7 +16,8 @@ jobs:
- name: Generate matrix with generate-matrix.sh - name: Generate matrix with generate-matrix.sh
run: chmod +x .github/workflows/detals-check-generate-matrix.sh; .github/workflows/detals-check-generate-matrix.sh run: chmod +x .github/workflows/detals-check-generate-matrix.sh; .github/workflows/detals-check-generate-matrix.sh
- id: set-matrix - name: Set Matrix
id: set-matrix
run: | run: |
shortnamearray=$(cat shortnamearray.json) shortnamearray=$(cat shortnamearray.json)
echo "${shortnamearray}" echo "${shortnamearray}"
@ -43,8 +44,8 @@ jobs:
- name: Enable developer mode - name: Enable developer mode
run: LGSM_GITHUBBRANCH="${GITHUB_REF#refs/heads/}" ./${{ matrix.shortname }}server developer run: LGSM_GITHUBBRANCH="${GITHUB_REF#refs/heads/}" ./${{ matrix.shortname }}server developer
- id: sets-servercfgname - name: Generate servercfgname
name: Generate servercfgname id: sets-servercfgname
run: | run: |
servercfg=$(sed -n "/^\<servercfgdefault\>/ { s/.*= *\"\?\([^\"']*\)\"\?/\1/p;q }" lgsm/config-lgsm/${{ matrix.shortname }}server/_default.cfg) servercfg=$(sed -n "/^\<servercfgdefault\>/ { s/.*= *\"\?\([^\"']*\)\"\?/\1/p;q }" lgsm/config-lgsm/${{ matrix.shortname }}server/_default.cfg)
echo "servercfgname=$servercfg" >> "$GITHUB_OUTPUT" echo "servercfgname=$servercfg" >> "$GITHUB_OUTPUT"
@ -54,7 +55,7 @@ jobs:
if [ -z "${{ steps.sets-servercfgname.outputs.servercfgname }}" ]; then if [ -z "${{ steps.sets-servercfgname.outputs.servercfgname }}" ]; then
echo "This game server has no config file." echo "This game server has no config file."
else else
curl -f -o config "https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/rename/${{ matrix.shortname }}/${{ steps.sets-servercfgname.outputs.servercfgname }}" curl -f -o config "https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/main/${{ matrix.shortname }}/${{ steps.sets-servercfgname.outputs.servercfgname }}"
fi fi
- name: Display config - name: Display config
run: | run: |

9
.github/workflows/git-sync.yml

@ -1,4 +1,4 @@
name: Github to Bitbucket sync name: Github to Bitbucket Sync
# This action will sync the github repo with a backup bitbucket repo. # This action will sync the github repo with a backup bitbucket repo.
# This will allow LinuxGSM to use Bitbucket as and alternative download if github fails. # This will allow LinuxGSM to use Bitbucket as and alternative download if github fails.
on: on:
@ -6,16 +6,17 @@ on:
branches: branches:
- master - master
- develop - develop
jobs: jobs:
GitHub-to-Bitbucket: gitHub-to-bitbucket:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: webfactory/[email protected] - name: SSH Agent
uses: webfactory/[email protected] uses: webfactory/[email protected]
with: with:
ssh-private-key: ${{ secrets.BITBUCKET_SECRET }} ssh-private-key: ${{ secrets.BITBUCKET_SECRET }}
- name: wei/[email protected] - name: Git Sync
uses: wei/[email protected] uses: wei/[email protected]
with: with:
ssh_private_key: ${{ secrets.BITBUCKET_SECRET }} ssh_private_key: ${{ secrets.BITBUCKET_SECRET }}

14
.github/workflows/label-sponsors.yml

@ -1,14 +0,0 @@
name: Label sponsors
on:
pull_request:
types: [opened]
issues:
types: [opened]
jobs:
build:
name: is-sponsor-label
runs-on: ubuntu-latest
steps:
- uses: JasonEtco/is-sponsor-label-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

26
.github/workflows/labeler.yml

@ -1,24 +1,30 @@
name: "Issue Labeler" name: Issue Labeler
on: on:
issues: issues:
types: [opened, edited] types:
pull_request: - opened
types: [opened, edited] - edited
permissions: permissions:
issues: write
contents: read contents: read
jobs: jobs:
triage: issue-labeler:
permissions:
contents: read # for github/issue-labeler to get repo contents
issues: write # for github/issue-labeler to create or remove labels
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: github/[email protected] - name: Issue Labeler
uses: github/[email protected]
with: with:
repo-token: "${{ secrets.GITHUB_TOKEN }}" repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler.yml configuration-path: .github/labeler.yml
not-before:
enable-versioned-regex: 0 enable-versioned-regex: 0
include-title: 1 include-title: 1
is-sponsor-label:
runs-on: ubuntu-latest
steps:
- name: Is Sponsor Label
uses: JasonEtco/is-sponsor-label-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

14
.github/workflows/lock.yml

@ -1,20 +1,18 @@
name: "Lock Threads" name: Lock Threads
on: on:
schedule: schedule:
- cron: "0 0 * * *" - cron: "0 0 * * 1"
permissions: permissions:
contents: read issues: write
pull-requests: write
jobs: jobs:
lock: lock:
permissions:
issues: write # for dessant/lock-threads to lock issues
pull-requests: write # for dessant/lock-threads to lock PRs
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: dessant/lock-threads@v4 - name: Lock Threads
uses: dessant/lock-threads@v4
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
issue-comment: > issue-comment: >

19
.github/workflows/potential-duplicates.yml

@ -1,30 +1,21 @@
name: Potential Duplicates name: Potential Duplicates
on: on:
issues: issues:
types: [opened] types:
- opened
jobs: jobs:
run: potential-duplicates:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: wow-actions/potential-duplicates@v1 - name: Potential Duplicates
uses: wow-actions/potential-duplicates@v1
with: with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Issue title filter work with anymatch https://www.npmjs.com/package/anymatch.
# Any matched issue will stop detection immediately.
# You can specify multi filters in each line.
filter: "" filter: ""
# Exclude keywords in title before detecting.
exclude: "" exclude: ""
# Label to set, when potential duplicates are detected.
label: potential-duplicate label: potential-duplicate
# Get issues with state to compare. Supported state: 'all', 'closed', 'open'.
state: all state: all
# If similarity is higher than this threshold([0,1]), issue will be marked as duplicate.
threshold: 0.8 threshold: 0.8
# Reactions to be add to comment when potential duplicates are detected.
# Available reactions: "-1", "+1", "confused", "laugh", "heart", "hooray", "rocket", "eyes"
#reactions: 'eyes, confused'
# Comment to post when potential duplicates are detected.
comment: > comment: >
Potential duplicates: {{#issues}} Potential duplicates: {{#issues}}
- [#{{ number }}] {{ title }} ({{ accuracy }}%) - [#{{ number }}] {{ title }} ({{ accuracy }}%)

7
.github/workflows/serverlist-validate.yml

@ -1,4 +1,4 @@
name: Server list Validation name: Server List Validation
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
@ -7,7 +7,8 @@ jobs:
serverlist-validate: serverlist-validate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - name: Checkout
uses: actions/checkout@v3
- name: compare versions - name: Compare Versions
run: chmod +x .github/workflows/serverlist-validate.sh; .github/workflows/serverlist-validate.sh run: chmod +x .github/workflows/serverlist-validate.sh; .github/workflows/serverlist-validate.sh

9
.github/workflows/trigger-docker-build.yml

@ -3,12 +3,13 @@ on:
release: release:
types: types:
- published - published
jobs: jobs:
trigger_build_docker-linuxgsm: trigger_build_docker-linuxgsm:
name: Trigger Build docker-linuxgsm
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: convictional/[email protected] - name: Trigger Workflow and Wait (linuxgsm)
uses: convictional/[email protected]
with: with:
owner: GameServerManagers owner: GameServerManagers
repo: docker-linuxgsm repo: docker-linuxgsm
@ -16,10 +17,10 @@ jobs:
workflow_file_name: docker-publish.yml workflow_file_name: docker-publish.yml
trigger_build_docker-gameserver: trigger_build_docker-gameserver:
name: Trigger Build docker-linuxgsm
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: convictional/[email protected] - name: Trigger Workflow and Wait (gameserver)
uses: convictional/[email protected]
with: with:
owner: GameServerManagers owner: GameServerManagers
repo: docker-gameserver repo: docker-gameserver

8
.github/workflows/update-copyright-years-in-license-file.yml

@ -1,6 +1,4 @@
---
name: Update copyright year(s) in license file name: Update copyright year(s) in license file
on: on:
workflow_dispatch: workflow_dispatch:
schedule: schedule:
@ -10,10 +8,12 @@ jobs:
update-license-year: update-license-year:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - name: Checkout
uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: FantasticFiasco/action-update-license-year@v3 - name: Action Update License Year
uses: FantasticFiasco/action-update-license-year@v3
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
path: LICENSE.md path: LICENSE.md

9
.github/workflows/version-check.yml

@ -1,6 +1,6 @@
name: Version Check name: Version Check
on:
on: push push:
permissions: permissions:
contents: read contents: read
@ -9,7 +9,8 @@ jobs:
version-Check: version-Check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - name: Checkout
uses: actions/checkout@v3
- name: compare versions - name: Version Check
run: chmod +x .github/workflows/version-check.sh; .github/workflows/version-check.sh run: chmod +x .github/workflows/version-check.sh; .github/workflows/version-check.sh

7
lgsm/modules/check_executable.sh

@ -7,6 +7,13 @@
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# #4241 temporary fix for Satisfactory for upgrade betweern Update 7 & Update 8 - remove this once update 8 is released
if [ "${shortname}" == "sf" ]; then
if [ ! -f "${serverfiles}/Engine/Binaries/Linux/UE4Server-Linux-Shipping" ]; then
ln -s "${serverfiles}/Engine/Binaries/Linux/UnrealServer-Linux-Shipping" "${serverfiles}/Engine/Binaries/Linux/UE4Server-Linux-Shipping"
fi
fi
# Check if executable exists # Check if executable exists
execname=$(basename "${executable}") execname=$(basename "${executable}")
if [ ! -f "${executabledir}/${execname}" ]; then if [ ! -f "${executabledir}/${execname}" ]; then

2
lgsm/modules/core_functions.sh

@ -8,7 +8,7 @@
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v23.3.3" modulesversion="v23.3.4"
# Core # Core

2
lgsm/modules/core_modules.sh

@ -8,7 +8,7 @@
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v23.3.3" modulesversion="v23.3.4"
# Core # Core

2
lgsm/modules/info_game.sh

@ -131,7 +131,7 @@ fn_info_game_xml() {
else else
servercfgparse="${servercfgfullpath}" servercfgparse="${servercfgfullpath}"
fi fi
eval "${1}"="$(xmllint --xpath "string(${2})" "${servercfgparse}")" eval "${1}=\"$(xmllint --xpath "string(${2})" "${servercfgparse}")\""
configtype="xml" configtype="xml"
} }

2
linuxgsm.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.3.3" version="v23.3.4"
shortname="core" shortname="core"
gameservername="core" gameservername="core"
commandname="CORE" commandname="CORE"

2
tests/tests_fctrserver.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.3.3" version="v23.3.4"
shortname="fctr" shortname="fctr"
gameservername="fctrserver" gameservername="fctrserver"
commandname="CORE" commandname="CORE"

2
tests/tests_jc2server.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.3.3" version="v23.3.4"
shortname="jc2" shortname="jc2"
gameservername="jc2server" gameservername="jc2server"
commandname="CORE" commandname="CORE"

2
tests/tests_mcserver.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.3.3" version="v23.3.4"
shortname="mc" shortname="mc"
gameservername="mcserver" gameservername="mcserver"
commandname="CORE" commandname="CORE"

2
tests/tests_ts3server.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x set -x
fi fi
version="v23.3.3" version="v23.3.4"
shortname="ts3" shortname="ts3"
gameservername="ts3server" gameservername="ts3server"
commandname="CORE" commandname="CORE"

Loading…
Cancel
Save