Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GD-511: Remove obsolete ProjectScanner tool #513

Merged
merged 1 commit into from
Jun 22, 2024
Merged

GD-511: Remove obsolete ProjectScanner tool #513

merged 1 commit into from
Jun 22, 2024

Conversation

MikeSchulze
Copy link
Owner

Why

Since introducing gdunit4-action the tool ProjectScanner is obsolete. The restore of project cache is done by:

    - name: 'Restore Godot project cache'
      if: ${{ !cancelled() }}
      env:
        GODOT_BIN: '/home/runner/godot-linux/godot'
      shell: bash
      run: |
        cd "${{ inputs.project_dir }}"
        echo -e "\e[94mStart of the recovery of the project cache ...\e[0m"
        $GODOT_BIN --path ./ -e --headless --quit-after 2000
        echo -e "\e[94mProject cache successfully restored.\e[0m"

or since Godot v4.2.2 by using --import flag to restore the cache

What

Deleted the ProjectScanner tool

Why

What

# Why
Since introducing `gdunit4-action` the tool `ProjectScanner` is obsolete.
The restore of project cache is done by:
```
    - name: 'Restore Godot project cache'
      if: ${{ !cancelled() }}
      env:
        GODOT_BIN: '/home/runner/godot-linux/godot'
      shell: bash
      run: |
        cd "${{ inputs.project_dir }}"
        echo -e "\e[94mStart of the recovery of the project cache ...\e[0m"
        $GODOT_BIN --path ./ -e --headless --quit-after 2000
        echo -e "\e[94mProject cache successfully restored.\e[0m"
```
or since Godot v4.2.2 by using `--import` flag to restore the cache

# What
Deleted the `ProjectScanner` tool
@MikeSchulze MikeSchulze added refactoring Mark to refactoring a implementation CI CI - Workflow labels Jun 22, 2024
@MikeSchulze MikeSchulze self-assigned this Jun 22, 2024
@MikeSchulze MikeSchulze linked an issue Jun 22, 2024 that may be closed by this pull request
@MikeSchulze MikeSchulze merged commit f5e6dfb into master Jun 22, 2024
@MikeSchulze MikeSchulze deleted the GD-511 branch June 22, 2024 07:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI CI - Workflow refactoring Mark to refactoring a implementation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

GD-511: Remove obsolete ProjectScanner
1 participant