Skip to content

Commit

Permalink
Merge pull request #17 from intel/lukevalenty/try-intel-runners
Browse files Browse the repository at this point in the history
try using intel runners
  • Loading branch information
lukevalenty authored Sep 28, 2023
2 parents da24d3b + 718c7ce commit 509f259
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/asciidoctor-ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
configure:
name: Configure Github Pages Publishing
runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04
outputs:
enable_publish: ${{ steps.check.outputs.isfork == 'NO' }}
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
build:
needs: configure
name: Build Documentation
runs-on: ubuntu-22.04
runs-on: intel-ubuntu-22.04
steps:
- name: Checkout source
uses: actions/checkout@v4
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
environment:
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
id: deployment
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 @@ -123,19 +123,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 @@ -147,7 +147,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 @@ -172,7 +172,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 @@ -222,7 +222,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

0 comments on commit 509f259

Please sign in to comment.