This is an automated email from the ASF dual-hosted git repository.
harshitha pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/eventmesh.git
The following commit(s) were added to refs/heads/master by this push:
new c1c381b27 [ISSUE #4836] Fix Git submodules checkout failure in CI
`Build C` task (#4743)
c1c381b27 is described below
commit c1c381b270d1b1d08db5a1ff272dce2e351d25c6
Author: Pil0tXia <[email protected]>
AuthorDate: Tue Oct 22 03:15:00 2024 +0800
[ISSUE #4836] Fix Git submodules checkout failure in CI `Build C` task
(#4743)
* checkout submodules
* remove possible redundant "check out git submodule"
* minor naming unification (inrelevant with PR subject)
* Not triggering C task for now
* Use the same version of actions/checkout as 'Build' task for 'License
Check' task
* Revert change to avoid conflict
* Update a renamed label
---
.github/workflows/ci.yml | 11 +++++------
.github/workflows/stale.yml | 2 +-
2 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index bd5f977c2..d63c38110 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -39,13 +39,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
+ with:
+ submodules: true
- - if: matrix.language == 'cpp' || matrix.language == 'csharp'
- name: Build C
- run: |
- git submodule init
- git submodule update
- make -C ./eventmesh-sdks/eventmesh-sdk-c
+ - name: Build C SDK
+ if: matrix.language == 'cpp'
+ run: make -C ./eventmesh-sdks/eventmesh-sdk-c
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index c1e4f4ab1..8b5b16621 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -42,7 +42,7 @@ jobs:
It has been 60 days since the last activity on this pull request.
I am reaching out here to gently remind you that the Apache EventMesh community
values every pull request, and please feel free to get in touch with the
reviewers at any time. They are available to assist you in advancing the
progress of your pull request and offering the latest feedback.
If you encounter any challenges during development, seeking
support within the community is encouraged. We sincerely appreciate your
contributions to Apache EventMesh.
- exempt-issue-labels: 'pinned,discussion,help
wanted,WIP,weopen-star,GLCC,summer of code'
+ exempt-issue-labels: 'pinned,discussion,help
wanted,WIP,weopen-star,GLCC,GSoC'
exempt-pr-labels: 'help wanted,dependencies'
exempt-all-milestones: true # Exempt all issues/PRs with milestones
from stale
operations-per-run: 300
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]