diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a35853f..ac016f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: # BRANCH: "master" # MESSAGE: ":github: Triggered from a GitHub Action by brain Project" build: - runs-on: self-ubuntu-22.04 + runs-on: self-docker-ubuntu-22.04 if: "!contains(github.event.head_commit.message, 'ci skip')" name: Check Build, Install, Run steps: @@ -70,7 +70,7 @@ jobs: path: build/install/assets/mordicus-* build-docker: - runs-on: ubuntu-22.04 + runs-on: self-ubuntu-22.04 if: "!contains(github.event.head_commit.message, 'ci skip')" container: python:${{ matrix.python-version }} strategy: @@ -120,7 +120,7 @@ jobs: working-directory: src/poc-1/tests/Core deliver: - runs-on: ubuntu-20.04 + runs-on: self-ubuntu-22.04 needs: build # needs: check name: Docker Build, Tag, Push diff --git a/src/poc-1/src/Mordicus/Modules/Cemosis/IO/FeelppSolutionReader.py b/src/poc-1/src/Mordicus/Modules/Cemosis/IO/FeelppSolutionReader.py index cc3a577..2bc70ab 100644 --- a/src/poc-1/src/Mordicus/Modules/Cemosis/IO/FeelppSolutionReader.py +++ b/src/poc-1/src/Mordicus/Modules/Cemosis/IO/FeelppSolutionReader.py @@ -37,7 +37,7 @@ def WriteSolution(self, fileName, solution, fieldStructure=None, fieldName="", n assert(solution.shape[0] == v.size()) for i in range(solution.shape[0]): v.set(i, solution[i]) - u = self.Xh.elementFromVec(v,0) + u = self.Xh.element(v,0) path, name = osp.split(fileName) #self.e.addP1c(name, u) u.save(path, name)