Skip to content

Commit

Permalink
set git user info for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
june-fish committed Mar 30, 2024
1 parent aed3970 commit 0c463a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
ccache-${{ matrix.variant }}-
- name: Set git safe directory
run: git config --global safe.directory '*'
- name: Set git user info
run: |
git config --global user.email "[email protected]"
git config --global user.name "ci"
- name: Make
run: make -C ${{ matrix.variant }} CC="ccache aarch64-linux-gnu-gcc" compile
- name: Upload artifacts
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
ccache-${{ matrix.variant }}-
- name: Set git safe directory
run: git config --global safe.directory '*'
- name: Set git user info
run: |
git config --global user.email "[email protected]"
git config --global user.name "ci"
- name: Make
run: make -C ${{ matrix.variant }} CC="ccache gcc" compile
- name: Upload artifacts
Expand Down

0 comments on commit 0c463a7

Please sign in to comment.