Skip to content

Commit

Permalink
Removed CMakeVersion Checks, 0 is cpu_count
Browse files Browse the repository at this point in the history
Change-Id: I96fb4b05e6bf93fbbc6e0251555c4acb4e1a4bee
  • Loading branch information
laurentiu-erhan-arm committed Jan 19, 2024
1 parent 50eb3b3 commit 563a88f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
then
clang-format --version # A check for version 9 should be added.
git fetch origin ${{ github.base_ref }} # Fetch target branch to FETCH_HEAD for code style check.
python3 scripts/build.py --skip-tests --config ${{ matrix.config.type }} --check-code-style-base FETCH_HEAD
python3 scripts/build.py --skip-tests --config ${{ matrix.config.type }} --check-code-style-base FETCH_HEAD --parallel 0
python3 framework/generated/generate_vulkan.py # check generated code isn't out of date
git diff --exit-code
else
python3 scripts/build.py --skip-tests --config ${{ matrix.config.type }} --skip-check-code-style
python3 scripts/build.py --skip-tests --config ${{ matrix.config.type }} --skip-check-code-style --parallel 0
fi
- name: Prepare artifacts
run: |
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
uses: actions/checkout@v1
- name: Run build script
run: |
python scripts\build.py --skip-check-code-style --skip-tests --config ${{ matrix.config.type }}
python scripts\build.py --skip-check-code-style --skip-tests --config ${{ matrix.config.type }} --parallel 0
- name: Prepare artifacts
run: |
copy LICENSE.txt ${{ matrix.config.build_dir }}\windows\x64\output\bin\
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
sudo apt-get install -y libx11-xcb-dev libxcb-keysyms1-dev libwayland-dev libxrandr-dev liblz4-dev libzstd-dev
- name: Run build script
run: |
python3 scripts/build.py --skip-check-code-style --skip-tests
python3 scripts/build.py --skip-check-code-style --skip-tests --parallel 0
- name: Prepare artifacts
run: |
cp LICENSE.txt build/linux/x64/output/bin/
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
uses: actions/checkout@v1
- name: Run build script
run: |
python scripts\build.py --skip-check-code-style --skip-tests
python scripts\build.py --skip-check-code-style --skip-tests --parallel 0
- name: Prepare artifacts
run: |
copy LICENSE.txt build\windows\x64\output\bin\
Expand Down

0 comments on commit 563a88f

Please sign in to comment.