Browse Source
* server list validate * dir * dir * dir * cr * add missing pc2 * pc2 * fix branch * exit code * repo * branch * fix csv * letter * tidy * codacy * exit codepull/4213/head
committed by
GitHub
25 changed files with 64 additions and 19 deletions
@ -0,0 +1,22 @@ |
|||||
|
#!/bin/bash |
||||
|
echo "Checking that all the game servers are listed in all csv files" |
||||
|
echo "this check will ensure serverlist.csv has the same number of lines (-2 lines) as the other csv files" |
||||
|
# count the number of lines in the serverlist.csv |
||||
|
cd "lgsm/data" || exit |
||||
|
serverlistcount="$(wc -l < serverlist.csv)" |
||||
|
echo "serverlistcount: $serverlistcount" |
||||
|
# get list of all csv files starting with ubunutu debian centos |
||||
|
csvlist="$(ls -1 | grep -E '^(ubuntu|debian|centos|rhel|almalinux|rocky).*\.csv$')" |
||||
|
# loop though each csv file and make sure the number of lines is the same as the serverlistcount |
||||
|
for csv in $csvlist; do |
||||
|
csvcount="$(wc -l < "${csv}")" |
||||
|
csvcount=$((csvcount-2)) |
||||
|
if [ "$csvcount" -ne "$serverlistcount" ]; then |
||||
|
echo "ERROR: $csv ($csvcount) does not match serverlist.csv ($serverlistcount)" |
||||
|
exitcode=1 |
||||
|
else |
||||
|
echo "OK: $csv ($csvcount) and serverlist.csv ($serverlistcount) match" |
||||
|
fi |
||||
|
done |
||||
|
|
||||
|
exit ${exitcode} |
@ -0,0 +1,13 @@ |
|||||
|
name: Server list Validation |
||||
|
on: |
||||
|
workflow_dispatch: |
||||
|
push: |
||||
|
|
||||
|
jobs: |
||||
|
serverlist-validate: |
||||
|
runs-on: ubuntu-latest |
||||
|
steps: |
||||
|
- uses: actions/checkout@v3 |
||||
|
|
||||
|
- name: compare versions |
||||
|
run: chmod +x .github/workflows/serverlist-validate.sh; .github/workflows/serverlist-validate.sh |
@ -1,26 +1,15 @@ |
|||||
# This is a basic workflow to help you get started with Actions |
|
||||
|
|
||||
name: Version Check |
name: Version Check |
||||
|
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request |
|
||||
# events but only for the master branch |
|
||||
on: push |
on: push |
||||
|
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel |
|
||||
permissions: |
permissions: |
||||
contents: read |
contents: read |
||||
|
|
||||
jobs: |
jobs: |
||||
# This workflow contains a single job called "build" |
version-Check: |
||||
Version-Check: |
|
||||
# The type of runner that the job will run on |
|
||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||
|
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job |
|
||||
steps: |
steps: |
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it |
|
||||
- uses: actions/checkout@v3 |
- uses: actions/checkout@v3 |
||||
|
|
||||
# Runs a single command using the runners shell |
|
||||
- name: compare versions |
- name: compare versions |
||||
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 |
||||
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 47.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Can't render this file because it has a wrong number of fields in line 2.
|
Loading…
Reference in new issue