Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
CedNaru committed Jan 13, 2025
1 parent baba396 commit ec9bb20
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,17 @@ jobs:
with:
path: modules/kotlin_jvm

- name: Cherry-Pick Commit
run: |
# Specify the commit hash you want to cherry-pick
COMMIT_HASH="5318008ce6a52fa3af7f466189a263d4905c76fa"
git cherry-pick $COMMIT_HASH || {
# Handle merge conflicts
echo "Conflict detected during cherry-pick"
git cherry-pick --abort
exit 1
}
- uses: actions/setup-java@v4
with:
distribution: adopt-hotspot
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/build_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ jobs:
with:
path: modules/kotlin_jvm

- name: Cherry-Pick Commit
run: |
# Specify the commit hash you want to cherry-pick
COMMIT_HASH="5318008ce6a52fa3af7f466189a263d4905c76fa"
git cherry-pick $COMMIT_HASH || {
# Handle merge conflicts
echo "Conflict detected during cherry-pick"
git cherry-pick --abort
exit 1
}
- name: Setup Godot build cache
uses: ./modules/kotlin_jvm/.github/actions/scons-cache
continue-on-error: true
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,17 @@ jobs:
with:
path: modules/kotlin_jvm

- name: Cherry-Pick Commit
run: |
# Specify the commit hash you want to cherry-pick
COMMIT_HASH="5318008ce6a52fa3af7f466189a263d4905c76fa"
git cherry-pick $COMMIT_HASH || {
# Handle merge conflicts
echo "Conflict detected during cherry-pick"
git cherry-pick --abort
exit 1
}
- name: Setup Godot build cache
uses: ./modules/kotlin_jvm/.github/actions/scons-cache
with:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,17 @@ jobs:
with:
path: modules/kotlin_jvm

- name: Cherry-Pick Commit
run: |
# Specify the commit hash you want to cherry-pick
COMMIT_HASH="5318008ce6a52fa3af7f466189a263d4905c76fa"
git cherry-pick $COMMIT_HASH || {
# Handle merge conflicts
echo "Conflict detected during cherry-pick"
git cherry-pick --abort
exit 1
}
- name: Setup Godot build cache
uses: ./modules/kotlin_jvm/.github/actions/scons-cache
with:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,17 @@ jobs:
with:
path: modules/kotlin_jvm

- name: Cherry-Pick Commit
run: |
# Specify the commit hash you want to cherry-pick
COMMIT_HASH="5318008ce6a52fa3af7f466189a263d4905c76fa"
git cherry-pick $COMMIT_HASH || {
# Handle merge conflicts
echo "Conflict detected during cherry-pick"
git cherry-pick --abort
exit 1
}
- name: Setup Godot build cache
uses: ./modules/kotlin_jvm/.github/actions/scons-cache
with:
Expand Down

0 comments on commit ec9bb20

Please sign in to comment.