Skip to content

Commit 3d86e6c

Browse files
authored
Merge pull request #169 from nmerget/revert-for-pipeline
fix: reverted changes to have a runnable pipeline
2 parents 9a3cd3f + 94b7db9 commit 3d86e6c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+529
-1305
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 180 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/actions/godot-build/action.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/actions/godot-cache/action.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/actions/godot-deps/action.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/actions/upload-artifact/action.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/android_builds.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: 🤖 Android Builds
22
on:
33
workflow_call:
4+
inputs:
5+
version:
6+
required: true
7+
type: string
48

59
# Global Settings
610
env:
7-
# Used for the cache key. Add version suffix to force clean build.
8-
GODOT_BASE_BRANCH: '4.0'
9-
SCONSFLAGS: verbose=yes warnings=extra werror=yes debug_symbols=no module_text_server_fb_enabled=yes
11+
SCONSFLAGS: warnings=extra werror=yes debug_symbols=no module_text_server_fb_enabled=yes
1012

1113
concurrency:
1214
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-android
@@ -19,13 +21,13 @@ jobs:
1921

2022
steps:
2123
- name: Checkout Godot
22-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2325
with:
2426
repository: godotengine/godot
25-
ref: ${{ env.GODOT_BASE_BRANCH }}
27+
ref: ${{ inputs.version }}
2628

2729
- name: Checkout ECMAScript
28-
uses: actions/checkout@v2
30+
uses: actions/checkout@v4
2931
with:
3032
path: ${{github.workspace}}/modules/javascript/
3133

0 commit comments

Comments
 (0)