Skip to content

Commit

Permalink
Workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mush42 committed Jul 27, 2024
1 parent 005a807 commit 5563e09
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ jobs:
- runner: ubuntu-latest
target: aarch64
steps:
- name: setup-env
run:
- git config --global protocol.file.allow always
- sudo apt-get update
- sudo apt-get install libclang-dev
- name: git-submodule-fix
run: git config --global protocol.file.allow always
- name: install libclang
run: sudo apt-get update && sudo apt-get install libclang-dev
- uses: actions/checkout@v4
with:
submodules: recursive
Expand Down Expand Up @@ -61,10 +60,10 @@ jobs:
- runner: windows-latest
target: x86
steps:
- name: setup-env
run:
- git config --global protocol.file.allow always
- choco install llvm --version=12.0.0
- name: git-submodule-fix
run: git config --global protocol.file.allow always
- name: install-clang
run: choco install llvm --version=12.0.0
- uses: actions/checkout@v4
with:
submodules: recursive
Expand Down Expand Up @@ -95,9 +94,8 @@ jobs:
- runner: macos-14
target: aarch64
steps:
- name: setup-env
run:
git config --global protocol.file.allow always
- name: git-submodule-fix
run: git config --global protocol.file.allow always
- uses: actions/checkout@v4
with:
submodules: recursive
Expand Down

0 comments on commit 5563e09

Please sign in to comment.