Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/asciidoctor-ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04

steps:
- name: Checkout source
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
name: github-pages
url: $${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04

steps:
- name: Deploy to github pages
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ concurrency:

jobs:
build_and_test:
runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -112,19 +112,19 @@ jobs:
run: ctest -j $(nproc) -C ${{matrix.build_type}}

quality_checks_pass:
runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04
steps:
- uses: actions/checkout@v4

- name: Install build tools
run: |
wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh ${{env.DEFAULT_LLVM_VERSION}}
sudo apt install -y ninja-build clang-tidy-${{env.DEFAULT_LLVM_VERSION}} clang-format-${{env.DEFAULT_LLVM_VERSION}}
sudo apt install -y python3-pip ninja-build clang-tidy-${{env.DEFAULT_LLVM_VERSION}} clang-format-${{env.DEFAULT_LLVM_VERSION}}

- name: Install cmake-format
run: |
pip3 install --upgrade pip
pip3 install pyyaml cmake-format
sudo pip3 install --upgrade pip
sudo pip3 install pyyaml cmake-format

- name: Configure CMake
env:
Expand All @@ -136,7 +136,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build -t quality

sanitize:
runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand All @@ -161,7 +161,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build -t unit_tests

valgrind:
runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
test $FAILSIZE = "0"

merge_ok:
runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04
needs: [build_and_test, quality_checks_pass, sanitize, valgrind]
steps:
- name: Enable merge
Expand Down