-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge dev into Master for new Release (#540)
* Test server should based on dev branch * Allow pr tests against the dev branch * Upload build packages for dev branch too * Remove artifact after one month * remove old code, wait 2 frames before setting velocity to 0 (#518) * Update fresh_install.sql (#519) Fixed errors. * Add missing ck_replays table (#520) * Fix version in error message (#521) * --wrong value on check (#522) * fix for #524 (#525) * --fix style records/forwards * --added oldtime var for styles --added time difference between old and new server style record to printed phrase --actually fixed issues(?) * --missing set values for new var * --missing indexation * --wrong format * Rename some files for clarity for updating tables * Add semicolons (#528) * Use LogStackTrace instead of LogError (#530) Usage of sizeof instead of hardcoded size * Add radar images to DownloadTable (#529) * add radar images to download table * remove colon from readme * add surf load screens to readme * Add EU test server to workflow * Add EU test server to README.md * Fix chat processor for our commands (#533) * Log query times (#531) * Hello World * Hello World * Print each query time into server console while startup * Log query times into logs/surftimer/<map>.log logs * Update globals.sp (#536) if database name is greater than 32 then will get following error [SM] Exception reported: More/Less then 1 rows? RowCount: 0, Table: ck_bonus, Column: runtime [SM] Blaming: SurfTimer.smx [SM] Call stack trace: [SM] [0] SetFailState [SM] [1] Line 241, surftimer/db/updater.sp::SQLCheckDataType * Increase name length (#534) * Increase name length from 32 to 128 * Increase name size per updater * Add missing tables * Update VARCHAR size in fresh_install.sql * Skip error check to prevent invalid error * 128 -> 64 * practice mode changes (#539) * practice mode changes * remove timer function * forgot this timer seperates stuff into a million different functions :) * add mapper names to ck_maptier (#538) * add mapper names to ck_maptier * use translation * readme: improve installation + requirements docs (#537) * readme: improve installation + requirements docs * readme: EndTouchFix note update * readme: EndTouchFix note update Co-authored-by: dPexxIAM <[email protected]> Co-authored-by: Jacob Christiansen <[email protected]> Co-authored-by: shipyy <[email protected]> Co-authored-by: T <[email protected]> Co-authored-by: Kyle <[email protected]> Co-authored-by: 8guawong <[email protected]> Co-authored-by: Markus <[email protected]>
- Loading branch information
1 parent
838f2a2
commit 01b3153
Showing
19 changed files
with
2,064 additions
and
418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,7 +89,18 @@ jobs: | |
done | ||
working-directory: ${{ env.SCRIPTING_PATH }} | ||
|
||
- name: Upload files | ||
- name: Upload files to EU | ||
uses: SamKirkland/[email protected] | ||
env: | ||
FTP_SERVER: ${{ secrets.SFTP_HOST_EU }} | ||
FTP_USERNAME: ${{ secrets.SFTP_USER_EU }} | ||
FTP_PASSWORD: ${{ secrets.SFTP_PASS_EU }} | ||
LOCAL_DIR: upload | ||
METHOD: sftp | ||
PORT: ${{ secrets.SFTP_PORT_EU }} | ||
ARGS: --no-empty-dirs | ||
|
||
- name: Upload files to NA | ||
uses: SamKirkland/[email protected] | ||
env: | ||
FTP_SERVER: ${{ secrets.SFTP_HOST }} | ||
|
@@ -100,7 +111,17 @@ jobs: | |
PORT: ${{ secrets.SFTP_PORT }} | ||
ARGS: --no-empty-dirs | ||
|
||
- name: Restart test server | ||
- name: Restart EU test server | ||
shell: bash | ||
run: | | ||
curl --request POST \ | ||
--url ${{ secrets.BASE_URL_EU }}api/client/servers/${{ secrets.SERVER_ID_EU }}/power \ | ||
--header 'Accept: application/json' \ | ||
--header 'Authorization: Bearer ${{ secrets.API_KEY_EU }}' \ | ||
--header 'Content-Type: application/json' \ | ||
--data '{ "signal": "restart" }' | ||
- name: Restart NA test server | ||
shell: bash | ||
run: | | ||
curl --request POST \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.