Skip to content

Commit

Permalink
test c# and python on container
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Sep 20, 2024
1 parent 719c1ab commit 75da99e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
- name: Test dotnet ${{ matrix.dotnet }}
working-directory: csharp
# run: dotnet test --framework net${{ matrix.dotnet }} "-l:html;LogFileName=TestReport.html" --results-directory . -warnaserror
run: dotnet test "-l:html;LogFileName=TestReport.html" --results-directory . -warnaserror
run: dotnet test --framework net8.0 "-l:html;LogFileName=TestReport.html" --results-directory . -warnaserror

- name: Upload test reports
if: always()
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,12 @@ jobs:
image: ${{ matrix.host.IMAGE }}
options: ${{ join(' -q ', matrix.host.CONTAINER_OPTIONS) }} # adding `-q` to bypass empty options
steps:
- name: Install git
- name: Install git and python
run: |
yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
yum update
yum install -y git tar python3
python3 -m ensurepip --upgrade
python3 -m pip install --upgrade pip
python3 -m pip install mypy-protobuf virtualenv
# python3 -m ensurepip --upgrade
# python3 -m pip install --upgrade pip
Expand All @@ -280,6 +281,7 @@ jobs:
# yum update
# yum update glibc
# yum reinstall glibc
# yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm

- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 75da99e

Please sign in to comment.