Skip to content

Commit

Permalink
Add note
Browse files Browse the repository at this point in the history
  • Loading branch information
abitmore committed Jan 9, 2023
1 parent 6e56261 commit ebbb8db
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-and-test.ubuntu-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04 ]
# Note:
# Ideally we should only build once per OS, and run tests once per OS per ES version.
# Due to some limitations of Github Actions, it takes too much effort to implement and maintain.
# For simplicity, we use an ES matrix here, although it results in multiple builds per OS.
es: [ "elasticsearch:7.17.8", "elasticsearch:8.5.3" ]
runs-on: ${{ matrix.os }}
services:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-and-test.ubuntu-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04 ]
# Note:
# Ideally we should only build once per OS, and run tests once per OS per ES version.
# Due to some limitations of Github Actions, it takes too much effort to implement and maintain.
# For simplicity, we use an ES matrix here, although it results in multiple builds per OS.
es: [ "elasticsearch:7.17.8", "elasticsearch:8.5.3" ]
runs-on: ${{ matrix.os }}
services:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sonar-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04 ]
# Note:
# Ideally we should only build once per OS, and run tests once per OS per ES version.
# Due to some limitations of Github Actions, it takes too much effort to implement and maintain.
# For simplicity, we use an ES matrix here, although it results in multiple builds per OS.
es: [ "elasticsearch:8.5.3" ]
runs-on: ${{ matrix.os }}
services:
Expand Down

0 comments on commit ebbb8db

Please sign in to comment.