Skip to content

Commit

Permalink
Fix debug tests with engine change (#8609)
Browse files Browse the repository at this point in the history
  • Loading branch information
wrexbe authored Jun 3, 2022
1 parent 3913558 commit 040d1c3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/test-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,28 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Checkout Master
uses: actions/checkout@v2

- name: Setup Submodule
run: |
git submodule update --init --recursive
- name: Pull engine updates
uses: space-wizards/[email protected]

- name: Update Engine Submodules
run: |
cd RobustToolbox/
git submodule update --init --recursive
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
dotnet-version: 6.0.x

- name: Get Engine Tag
run: |
cd RobustToolbox
git fetch --depth=1
- name: Install dependencies
run: dotnet restore

- name: Package client
run: |
Expand Down
3 changes: 3 additions & 0 deletions BuildChecker/git_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ def update_submodules():
Updates all submodules.
"""

if ('GITHUB_ACTIONS' in os.environ):
return

if os.path.isfile("DISABLE_SUBMODULE_AUTOUPDATE"):
return

Expand Down

0 comments on commit 040d1c3

Please sign in to comment.