Skip to content

Commit

Permalink
Fixing up the Python builds (#1014)
Browse files Browse the repository at this point in the history
  • Loading branch information
stack72 authored Jun 23, 2020
1 parent a9a2c4f commit 177be58
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,10 @@ jobs:
path: ${{ github.workspace}}/sdk/${{ matrix.language }}
- name: Update path
run: echo ::add-path::${{ github.workspace }}/bin
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install Python deps
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Install dependencies
run: make -f Makefile.github install_${{ matrix.language}}_sdk
- name: Configure AWS Credentials
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,10 @@ jobs:
path: ${{ github.workspace}}/sdk/${{ matrix.language }}
- name: Update path
run: echo ::add-path::${{ github.workspace }}/bin
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install Python deps
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Install dependencies
run: make -f Makefile.github install_${{ matrix.language}}_sdk
- name: Configure AWS Credentials
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,10 @@ jobs:
path: ${{ github.workspace}}/sdk/${{ matrix.language }}
- name: Update path
run: echo ::add-path::${{ github.workspace }}/bin
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install Python deps
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Install dependencies
run: make -f Makefile.github install_${{ matrix.language}}_sdk
- name: Configure AWS Credentials
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,10 @@ jobs:
path: ${{ github.workspace}}/sdk/${{ matrix.language }}
- name: Update path
run: echo ::add-path::${{ github.workspace }}/bin
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install Python deps
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Install dependencies
run: make -f Makefile.github install_${{ matrix.language}}_sdk
- name: Configure AWS Credentials
Expand Down

0 comments on commit 177be58

Please sign in to comment.