Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
markaren committed Nov 7, 2024
1 parent 12b7c88 commit 5b94798
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ jobs:
curl --output FMUChecker-2.0.4-win64.zip --url https://github.com/modelica-tools/FMUComplianceChecker/releases/download/2.0.4/FMUChecker-2.0.4-win64.zip -L
7z x FMUChecker-2.0.4-win64.zip && cd FMUChecker-2.0.4-win64
./fmuCheck.win64.exe ../build/${{ env.MODEL_PATH }}/${{ env.MODEL_PATH }}.fmu
shell: bash
- name: Test
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cross-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,20 @@ jobs:
uses: actions/download-artifact@v3
with:
name: binaries
path: ${{ env.MODEL_PATH }}/binaries
path: binaries

- name: "Download modelDescription.xml"
uses: actions/download-artifact@v3
with:
name: modelDescription
path: ${{ env.MODEL_PATH }}
path: model

- name: "Set permissions"
run: |
sudo chmod -R +x ${{ env.MODEL_PATH }}/binaries
sudo chmod -R +x model/binaries
- name: "Upload FMU"
uses: actions/upload-artifact@v3
with:
name: ${{ env.MODEL_PATH }}
path: ${{ env.MODEL_PATH }}
name: model
path: model

0 comments on commit 5b94798

Please sign in to comment.