Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ on:
jobs:
test_windows:
name: Windows
runs-on: windows-2019
runs-on: windows-2022

env:
ANSYS_VERSION: 221

ANSYS_VERSION: 261
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5

- id: install-dpf
uses: ./install-dpf-server
Expand All @@ -41,10 +40,10 @@ jobs:
runs-on: ubuntu-latest

env:
ANSYS_VERSION: 221
ANSYS_VERSION: 261

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v5

- id: install-dpf
uses: ./install-dpf-server
Expand Down
8 changes: 4 additions & 4 deletions install-dpf-server/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: "Install DPF Server"
description: "Install and test DPF Server for different OS and versions"
inputs:
dpf-standalone-TOKEN:
description: "github secret to access https://github.com/ansys-dpf/dpf-standalone"
description: "github secret to access https://github.com/ansys-internal/dpf-standalone"
required: true
ANSYS_VERSION:
description: "Ansys release version number in the format 221"
description: "Ansys release version number in the format 261"
required: false
default: "221"
default: "261"
outputs:
SERVER:
description: "Path to the server"
Expand All @@ -21,7 +21,7 @@ runs:
$TEMP2 = $TEMP.ToString()
$ANSYS_VERSION_WITH_POINT=$TEMP2.Insert(2,".")
$BranchName = if ("${{runner.os}}" -eq "Linux") { "linux_release-$ANSYS_VERSION_WITH_POINT" } else { "win_release-$ANSYS_VERSION_WITH_POINT" }
git clone --branch $BranchName --single-branch https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-dpf/dpf-standalone
git clone --branch $BranchName --single-branch https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-internal/dpf-standalone
shell: pwsh

- run: |
Expand Down
Loading