-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from PelionIoT/updates
Update dependencies
- Loading branch information
Showing
4 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,14 @@ on: | |
description: 'MCCE branch to pull' | ||
default: 'master' | ||
required: false | ||
type: string | ||
type: string | ||
workflow_dispatch: | ||
inputs: | ||
tested_branch: | ||
description: 'MCCE branch to pull' | ||
default: 'master' | ||
required: false | ||
type: string | ||
|
||
# This allows a subsequently queued workflow run to interrupt previous runs | ||
concurrency: | ||
|
@@ -30,10 +37,10 @@ jobs: | |
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.8' | ||
- name: Set access token | ||
run: | | ||
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github.com/".insteadOf "[email protected]:" | ||
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf "https://github" | ||
- name: Set access token for internal repo access | ||
uses: PelionIoT/actions/.github/actions/git-config@main | ||
with: | ||
github_token: ${{ secrets.ACCESS_TOKEN }} | ||
- name: Install mbed-cli | ||
run: | | ||
pip install mbed-cli | ||
|
@@ -83,3 +90,6 @@ jobs: | |
pip install git+https://${{ secrets.ACCESS_TOKEN }}@github.com/PelionIoT/raas-pyclient.git#egg=raas-client | ||
pytest TESTS/client-e2e-python-test-library/tests/dev-client-tests.py --update_bin=__x86_x64_NativeLinux_mbedtls/Debug/mbedCloudClientExample.elf --local_binary=__x86_x64_NativeLinux_mbedtls/Debug/mbedCloudClientExample.elf --log-cli-level=DEBUG | ||
- run: echo "🍏 This job's status is ${{ job.status }}." | ||
- name: Cleanup .gitconfig | ||
if: always() | ||
run: rm -f ~/.gitconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
manifest-tool>=2.1.0 | ||
manifest-tool==2.6.2 | ||
mbed-ls==1.8.* | ||
pytest==6.2.* | ||
pytest==7.4.4 | ||
pytest-html | ||
pyserial | ||
requests==2.31.0 | ||
requests==2.32.3 | ||
ws4py |