Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try using intel runners #17

Merged
merged 3 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
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-latest
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-latest
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-latest
steps:
- name: Deploy to github pages
id: deployment
Expand Down
14 changes: 7 additions & 7 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-latest
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
run: ctest -j $(nproc) -C ${{matrix.build_type}}

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

Expand All @@ -134,8 +134,8 @@ jobs:

- 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-latest
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-latest
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-latest
needs: [build_and_test, quality_checks_pass, sanitize, valgrind]
steps:
- name: Enable merge
Expand Down