Skip to content

Commit

Permalink
Add dependency to python3-six in github action grpc (#1554)
Browse files Browse the repository at this point in the history
### Description of changes: 

Fix Github actions to work with Ubuntu 24.04

Ubuntu 24.04 does not provide the Python package six by default,
contrary to previous Ubuntu versions. This causes issues with the
integrations:grpc action.

### Call-outs:

N/A

### Testing:

N/A (just a change in dependencies in integrations tests)

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license and the ISC license.

---------

Co-authored-by: Fabrice Benhamouda <[email protected]>
  • Loading branch information
fabrice102 and Fabrice Benhamouda authored Apr 26, 2024
1 parent 2bdcba3 commit c25dc2a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/actions-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,25 @@ jobs:
macOS-x86:
if: github.repository_owner == 'aws'
needs: [sanity-test-run]
runs-on: macos-latest
runs-on: macos-latest-large
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew install ninja golang
- name: Build ${{ env.PACKAGE_NAME }}
run: |
./tests/ci/run_posix_tests.sh
macOS-x86-FIPS:
if: github.repository_owner == 'aws'
needs: [sanity-test-run]
runs-on: macos-latest
runs-on: macos-latest-large
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew install ninja golang
- name: Build ${{ env.PACKAGE_NAME }} with FIPS mode
run: |
./tests/ci/run_fips_tests.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Install OS Dependencies
run: |
apt-get update
apt-get -y --no-install-recommends install cmake gcc g++ ninja-build golang make python3 python3-sphinx autoconf libtool pkg-config git libc++-dev
apt-get -y --no-install-recommends install cmake gcc g++ ninja-build golang make python3 python3-sphinx autoconf libtool pkg-config git libc++-dev python3-six
- uses: actions/checkout@v3
- name: Run integration build
run: |
Expand Down

0 comments on commit c25dc2a

Please sign in to comment.