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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ on:
jobs:
test_windows:
name: Windows
runs-on: windows-2019
runs-on: windows-2022

env:
ANSYS_VERSION: 232
ANSYS_VERSION: 261

steps:
- uses: actions/[email protected]
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
runs-on: ubuntu-latest

env:
ANSYS_VERSION: 232
ANSYS_VERSION: 261

steps:
- uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions install-dpf-docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ 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 232"
Expand Down Expand Up @@ -33,7 +33,7 @@ runs:
BranchName="linux_release-"${ANSYS_VERSION_WITH_POINT}"${{inputs.standalone_suffix}}"
echo $BranchName

git clone --branch $BranchName --single-branch --depth=1 https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-dpf/dpf-standalone dpf-standalone
git clone --branch $BranchName --single-branch --depth=1 https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-internal/dpf-standalone dpf-standalone
ls dpf-standalone/

cd dpf-standalone/ansys/dpf/
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 232"
description: "Ansys release version number in the format 261"
required: false
default: "232"
default: "261"
standalone_suffix:
description: "Suffix of the branch on standalone"
required: false
Expand All @@ -34,7 +34,7 @@ runs:
}
$BranchName = if ("${{runner.os}}" -eq "Linux") { "linux_release-$ANSYS_VERSION_WITH_POINT" } else { "win_release-$ANSYS_VERSION_WITH_POINT" }
echo "cloning standalone branch name: " $BranchName
git clone --branch $BranchName --single-branch --depth=1 https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-dpf/dpf-standalone dpf-standalone/v${{inputs.ANSYS_VERSION}}
git clone --branch $BranchName --single-branch --depth=1 https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-internal/dpf-standalone dpf-standalone/v${{inputs.ANSYS_VERSION}}
echo "pwd: "
pwd
echo "ls: "
Expand Down
Loading