Skip to content

Commit

Permalink
minor fix on build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Happy2018new committed Feb 14, 2024
1 parent 8bd2328 commit 4c3f0e5
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/build_depends_and_submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:


jobs:
Runner:
Builder:
runs-on: macos-latest
steps:

Expand Down Expand Up @@ -44,10 +44,8 @@ jobs:
- name: Configure Makefile
run: mv ci_cd_auto_build_depends/Makefile neomega_kernel/neomega/c_api

- name: Clean Up and Change Path
run: |
rm -rf ci_cd_auto_build_depends
cd neomega_kernel/neomega/c_api
- name: Clean Up
run: rm -rf ci_cd_auto_build_depends

- name: Install Dependencies
run: |
Expand All @@ -59,17 +57,17 @@ jobs:
- name: Build Depends
run: |
cd neomega_kernel/neomega/c_api
make all
rm -rf libs/*.h
- name: Move Binary Files and Change Path
run: |
mv * ../../../ToolDelta
cd ../../../ToolDelta
- name: Move Binary Files
run: mv neomega_kernel/neomega/c_api/libs/* ToolDelta

- name: Submit Changes
uses: EndBug/add-and-commit@v9
with:
add: 'ToolDelta/*'
default_author: github_actions
message: '[AUTO] build depends and submit'
push: '-f' # 要求暴力推送

0 comments on commit 4c3f0e5

Please sign in to comment.