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 <yury.fridlyand@improving.com>
  • Loading branch information
Yury-Fridlyand committed Sep 20, 2024
1 parent 0fa339b commit adfeb1d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,18 +92,17 @@ jobs:
with:
dotnet-version: ${{ matrix.dotnet }}

- name: Install shared software dependencies
uses: ./.github/workflows/install-shared-dependencies
with:
os: ${{ matrix.host.OS }}
target: ${{ matrix.host.TARGET }}
github-token: ${{ secrets.GITHUB_TOKEN }}
engine-version: ${{ matrix.engine.version }}
# - name: Install shared software dependencies
# uses: ./.github/workflows/install-shared-dependencies
# with:
# os: ${{ matrix.host.OS }}
# target: ${{ matrix.host.TARGET }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
# engine-version: ${{ matrix.engine.version }}

- name: Test dotnet ${{ matrix.dotnet }}
working-directory: csharp
# - 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 build --framework net${{ matrix.dotnet }}

# - uses: ./.github/workflows/test-benchmark
# with:
Expand Down Expand Up @@ -162,6 +161,11 @@ jobs:
with:
submodules: recursive

- name: Set up dotnet ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}

- name: Install shared software dependencies
uses: ./.github/workflows/install-shared-dependencies
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ jobs:
- name: Install git
run: |
yum update
yum install -y git tar python3
yum install -y git tar python3 python3-pip
python3 -m pip install --upgrade pip
pip install mypy-protobuf virtualenv
Expand Down

0 comments on commit adfeb1d

Please sign in to comment.