Skip to content

Commit

Permalink
Activate disabled tasks again
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed May 19, 2024
1 parent fc6797e commit 116efa8
Showing 1 changed file with 28 additions and 29 deletions.
57 changes: 28 additions & 29 deletions .github/workflows/trigger_on_push_master.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name: Master pipeline
on:
push
# TODO: enable after testing is done!
# branches:
# - master
# schedule:
# - cron: '0 0 * * 1' # run once a week on monday midnight to prevent the cache from being cleared
push:
branches:
- master
schedule:
- cron: '0 0 * * 1' # run once a week on monday midnight to prevent the cache from being cleared

concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-trigger_on_push_master
Expand Down Expand Up @@ -33,22 +32,22 @@ jobs:
godot-version: ${{ needs.setup-build-variables.outputs['godot-version'] }}
jvm-version: ${{ needs.setup-build-variables.outputs['jvm-version'] }}

# build-android:
# name: πŸ€– Build and Assemble Android
# uses: ./.github/workflows/build_android.yml
# needs:
# - setup-build-variables
# with:
# godot-version: ${{ needs.setup-build-variables.outputs['godot-version'] }}
# jvm-version: ${{ needs.setup-build-variables.outputs['jvm-version'] }}
#
# build-ios:
# name: 🍏 Build iOS
# uses: ./.github/workflows/build_ios.yml
# needs:
# - setup-build-variables
# with:
# godot-version: ${{ needs.setup-build-variables.outputs['godot-version'] }}
build-android:
name: πŸ€– Build and Assemble Android
uses: ./.github/workflows/build_android.yml
needs:
- setup-build-variables
with:
godot-version: ${{ needs.setup-build-variables.outputs['godot-version'] }}
jvm-version: ${{ needs.setup-build-variables.outputs['jvm-version'] }}

build-ios:
name: 🍏 Build iOS
uses: ./.github/workflows/build_ios.yml
needs:
- setup-build-variables
with:
godot-version: ${{ needs.setup-build-variables.outputs['godot-version'] }}

build-linux:
name: 🐧 Build Linux
Expand All @@ -58,13 +57,13 @@ jobs:
with:
godot-version: ${{ needs.setup-build-variables.outputs['godot-version'] }}

# build-macos:
# name: 🍎 Build macOS
# uses: ./.github/workflows/build_macos.yml
# needs:
# - setup-build-variables
# with:
# godot-version: ${{ needs.setup-build-variables.outputs['godot-version'] }}
build-macos:
name: 🍎 Build macOS
uses: ./.github/workflows/build_macos.yml
needs:
- setup-build-variables
with:
godot-version: ${{ needs.setup-build-variables.outputs['godot-version'] }}

build-windows:
name: πŸͺŸ Build Windows
Expand Down

0 comments on commit 116efa8

Please sign in to comment.