Skip to content

Commit

Permalink
docs: avoid ubuntu-latest (#244)
Browse files Browse the repository at this point in the history
* docs: avoid parallelization

* Update ci.yml

* Update nightly-doc-build.yml

* Update docker-images.yml

* Update ci.yml

* Update doc/Makefile
  • Loading branch information
RobPasMue authored Jan 16, 2025
1 parent bcefe9d commit c0a8b35
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
cpp-build-test-rest:
name: C++ - Build and Unit Testing - REST
needs: [style]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
cpp-build-test-grpc:
name: C++ - Build and Unit Testing - gRPC
needs: [style]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand All @@ -164,7 +164,7 @@ jobs:
build-doc:
name: Build Documentation
needs: [docs-style, python-build-test, cpp-build-test-rest, cpp-build-test-grpc]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

services:
python-rest-server:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
jobs:
docker-images:
name: Build the ${{ matrix.image-names }} docker image
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
image-names:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
nightly_docs_build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

services:
python-rest-server:
Expand Down

0 comments on commit c0a8b35

Please sign in to comment.