testing ci
This commit is contained in:
@@ -37,58 +37,53 @@ jobs:
|
|||||||
INITIAL_VERSION: 0.1.0
|
INITIAL_VERSION: 0.1.0
|
||||||
DEFAULT_BUMP: patch
|
DEFAULT_BUMP: patch
|
||||||
|
|
||||||
Test:
|
# Test:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
env:
|
# env:
|
||||||
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
|
# RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
|
||||||
steps:
|
# steps:
|
||||||
- name: Install node, xvfb and curl
|
# - name: Install node, xvfb and curl
|
||||||
run: |
|
|
||||||
apt update && apt -y install curl nodejs xvfb
|
|
||||||
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
lfs: false
|
|
||||||
|
|
||||||
- name: Checkout LFS
|
|
||||||
run: |
|
|
||||||
UrlBase=$GITHUB_SERVER_URL; \
|
|
||||||
UrlLfsBase=$UrlBase/${{ gitea.repository }}.git/info/lfs/objects; \
|
|
||||||
Auth=`/usr/bin/git config --get --local http.$UrlBase/.extraheader`; \
|
|
||||||
/usr/bin/git config --local http.${UrlLfsBase}/batch.extraheader "$Auth"; \
|
|
||||||
/usr/bin/git config --local http.${UrlLfsBase}/.extraheader ''
|
|
||||||
|
|
||||||
git config --local lfs.transfer.maxretries 1
|
|
||||||
|
|
||||||
/usr/bin/git lfs fetch origin refs/remotes/origin/${{ gitea.ref_name }}
|
|
||||||
/usr/bin/git lfs checkout
|
|
||||||
/usr/bin/git add .
|
|
||||||
/usr/bin/git reset --hard
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
uses: godot-gdunit-labs/gdUnit4-action@v1
|
|
||||||
with:
|
|
||||||
godot-version: ${GODOT_VERSION}
|
|
||||||
godot-net: true
|
|
||||||
godot-force-mono: true
|
|
||||||
dotnet-version: 'net9.0'
|
|
||||||
paths: |
|
|
||||||
res://tests/
|
|
||||||
timeout: 1
|
|
||||||
publish-report: false
|
|
||||||
upload-report: false
|
|
||||||
|
|
||||||
- name: Upload test report
|
|
||||||
uses: actions/upload-artifact@v3-node20
|
|
||||||
with:
|
|
||||||
name: Test Report
|
|
||||||
path: ${{ github.workspace }}/reports/test-result.html
|
|
||||||
|
|
||||||
# - name: Trying build
|
|
||||||
# run: |
|
# run: |
|
||||||
# mkdir -v -p build/windows
|
# apt update && apt -y install curl nodejs xvfb
|
||||||
# /home/runner/godot-linux/godot --headless --verbose --build-solutions --export-release "Windows Desktop" build/windows/${{ env.GAME_NAME }}.exe
|
#
|
||||||
|
# - name: Checkout
|
||||||
|
# uses: actions/checkout@v3
|
||||||
|
# with:
|
||||||
|
# lfs: false
|
||||||
|
#
|
||||||
|
# - name: Checkout LFS
|
||||||
|
# run: |
|
||||||
|
# UrlBase=$GITHUB_SERVER_URL; \
|
||||||
|
# UrlLfsBase=$UrlBase/${{ gitea.repository }}.git/info/lfs/objects; \
|
||||||
|
# Auth=`/usr/bin/git config --get --local http.$UrlBase/.extraheader`; \
|
||||||
|
# /usr/bin/git config --local http.${UrlLfsBase}/batch.extraheader "$Auth"; \
|
||||||
|
# /usr/bin/git config --local http.${UrlLfsBase}/.extraheader ''
|
||||||
|
#
|
||||||
|
# git config --local lfs.transfer.maxretries 1
|
||||||
|
#
|
||||||
|
# /usr/bin/git lfs fetch origin refs/remotes/origin/${{ gitea.ref_name }}
|
||||||
|
# /usr/bin/git lfs checkout
|
||||||
|
# /usr/bin/git add .
|
||||||
|
# /usr/bin/git reset --hard
|
||||||
|
#
|
||||||
|
# - name: Run tests
|
||||||
|
# uses: godot-gdunit-labs/gdUnit4-action@v1
|
||||||
|
# with:
|
||||||
|
# godot-version: ${GODOT_VERSION}
|
||||||
|
# godot-net: true
|
||||||
|
# godot-force-mono: true
|
||||||
|
# dotnet-version: 'net9.0'
|
||||||
|
# paths: |
|
||||||
|
# res://tests/
|
||||||
|
# timeout: 1
|
||||||
|
# publish-report: false
|
||||||
|
# upload-report: false
|
||||||
|
#
|
||||||
|
# - name: Upload test report
|
||||||
|
# uses: actions/upload-artifact@v3-node20
|
||||||
|
# with:
|
||||||
|
# name: Test Report
|
||||||
|
# path: ${{ github.workspace }}/reports/test-result.html
|
||||||
|
|
||||||
Export:
|
Export:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -148,10 +143,6 @@ jobs:
|
|||||||
# run: |
|
# run: |
|
||||||
# godot --headless --editor --build-solutions --quit --import --path $PWD
|
# godot --headless --editor --build-solutions --quit --import --path $PWD
|
||||||
|
|
||||||
- name: Setup export templates
|
|
||||||
run: |
|
|
||||||
mkdir -v -p ~/.local/share/godot/export_templates/
|
|
||||||
mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable
|
|
||||||
- name: Build Windows
|
- name: Build Windows
|
||||||
run: |
|
run: |
|
||||||
mkdir -v -p build/windows
|
mkdir -v -p build/windows
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
name="Linux/X11"
|
name="Linux/X11"
|
||||||
platform="Linux"
|
platform="Linux"
|
||||||
runnable=true
|
runnable=true
|
||||||
advanced_options=false
|
|
||||||
dedicated_server=false
|
dedicated_server=false
|
||||||
custom_features=""
|
custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
@@ -11,6 +10,11 @@ include_filter=""
|
|||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path=""
|
export_path=""
|
||||||
patches=PackedStringArray()
|
patches=PackedStringArray()
|
||||||
|
patch_delta_encoding=false
|
||||||
|
patch_delta_compression_level_zstd=19
|
||||||
|
patch_delta_min_reduction=0.1
|
||||||
|
patch_delta_include_filters="*"
|
||||||
|
patch_delta_exclude_filters=""
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
seed=0
|
seed=0
|
||||||
@@ -53,7 +57,6 @@ texture_format/etc2=false
|
|||||||
name="Windows Desktop"
|
name="Windows Desktop"
|
||||||
platform="Windows Desktop"
|
platform="Windows Desktop"
|
||||||
runnable=true
|
runnable=true
|
||||||
advanced_options=false
|
|
||||||
dedicated_server=false
|
dedicated_server=false
|
||||||
custom_features=""
|
custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
@@ -61,6 +64,11 @@ include_filter=""
|
|||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path="builds/Movement tests.exe"
|
export_path="builds/Movement tests.exe"
|
||||||
patches=PackedStringArray()
|
patches=PackedStringArray()
|
||||||
|
patch_delta_encoding=false
|
||||||
|
patch_delta_compression_level_zstd=19
|
||||||
|
patch_delta_min_reduction=0.1
|
||||||
|
patch_delta_include_filters="*"
|
||||||
|
patch_delta_exclude_filters=""
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
seed=0
|
seed=0
|
||||||
@@ -128,7 +136,6 @@ texture_format/etc2=false
|
|||||||
name="macOS"
|
name="macOS"
|
||||||
platform="macOS"
|
platform="macOS"
|
||||||
runnable=true
|
runnable=true
|
||||||
advanced_options=false
|
|
||||||
dedicated_server=false
|
dedicated_server=false
|
||||||
custom_features=""
|
custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
@@ -136,6 +143,11 @@ include_filter=""
|
|||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path=""
|
export_path=""
|
||||||
patches=PackedStringArray()
|
patches=PackedStringArray()
|
||||||
|
patch_delta_encoding=false
|
||||||
|
patch_delta_compression_level_zstd=19
|
||||||
|
patch_delta_min_reduction=0.1
|
||||||
|
patch_delta_include_filters="*"
|
||||||
|
patch_delta_exclude_filters=""
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
seed=0
|
seed=0
|
||||||
@@ -150,6 +162,7 @@ binary_format/architecture="universal"
|
|||||||
custom_template/debug=""
|
custom_template/debug=""
|
||||||
custom_template/release=""
|
custom_template/release=""
|
||||||
debug/export_console_wrapper=1
|
debug/export_console_wrapper=1
|
||||||
|
application/liquid_glass_icon=""
|
||||||
application/icon=""
|
application/icon=""
|
||||||
application/icon_interpolation=4
|
application/icon_interpolation=4
|
||||||
application/bundle_identifier="com.ggj25.game"
|
application/bundle_identifier="com.ggj25.game"
|
||||||
@@ -310,10 +323,10 @@ privacy/collected_data/browsing_history/collected=false
|
|||||||
privacy/collected_data/browsing_history/linked_to_user=false
|
privacy/collected_data/browsing_history/linked_to_user=false
|
||||||
privacy/collected_data/browsing_history/used_for_tracking=false
|
privacy/collected_data/browsing_history/used_for_tracking=false
|
||||||
privacy/collected_data/browsing_history/collection_purposes=0
|
privacy/collected_data/browsing_history/collection_purposes=0
|
||||||
privacy/collected_data/search_hhistory/collected=false
|
privacy/collected_data/search_history/collected=false
|
||||||
privacy/collected_data/search_hhistory/linked_to_user=false
|
privacy/collected_data/search_history/linked_to_user=false
|
||||||
privacy/collected_data/search_hhistory/used_for_tracking=false
|
privacy/collected_data/search_history/used_for_tracking=false
|
||||||
privacy/collected_data/search_hhistory/collection_purposes=0
|
privacy/collected_data/search_history/collection_purposes=0
|
||||||
privacy/collected_data/user_id/collected=false
|
privacy/collected_data/user_id/collected=false
|
||||||
privacy/collected_data/user_id/linked_to_user=false
|
privacy/collected_data/user_id/linked_to_user=false
|
||||||
privacy/collected_data/user_id/used_for_tracking=false
|
privacy/collected_data/user_id/used_for_tracking=false
|
||||||
@@ -380,6 +393,10 @@ rm -rf \"{temp_dir}\""
|
|||||||
dotnet/include_scripts_content=false
|
dotnet/include_scripts_content=false
|
||||||
dotnet/include_debug_symbols=true
|
dotnet/include_debug_symbols=true
|
||||||
dotnet/embed_build_outputs=false
|
dotnet/embed_build_outputs=false
|
||||||
|
privacy/collected_data/search_hhistory/collected=false
|
||||||
|
privacy/collected_data/search_hhistory/linked_to_user=false
|
||||||
|
privacy/collected_data/search_hhistory/used_for_tracking=false
|
||||||
|
privacy/collected_data/search_hhistory/collection_purposes=0
|
||||||
application/min_macos_version="10.12"
|
application/min_macos_version="10.12"
|
||||||
|
|
||||||
[preset.3]
|
[preset.3]
|
||||||
@@ -387,7 +404,6 @@ application/min_macos_version="10.12"
|
|||||||
name="Windows ARM"
|
name="Windows ARM"
|
||||||
platform="Windows Desktop"
|
platform="Windows Desktop"
|
||||||
runnable=false
|
runnable=false
|
||||||
advanced_options=false
|
|
||||||
dedicated_server=false
|
dedicated_server=false
|
||||||
custom_features=""
|
custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
@@ -395,6 +411,11 @@ include_filter=""
|
|||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path=""
|
export_path=""
|
||||||
patches=PackedStringArray()
|
patches=PackedStringArray()
|
||||||
|
patch_delta_encoding=false
|
||||||
|
patch_delta_compression_level_zstd=19
|
||||||
|
patch_delta_min_reduction=0.1
|
||||||
|
patch_delta_include_filters="*"
|
||||||
|
patch_delta_exclude_filters=""
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
seed=0
|
seed=0
|
||||||
|
|||||||
Reference in New Issue
Block a user