Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update continuous-integration.yml #1469

Merged
merged 8 commits into from
Nov 15, 2023
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: 5 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
name: OpenSim-${{ steps.build-gui.outputs.version }}-win64
path: OpenSim-${{ steps.build-gui.outputs.version }}-win64.exe

mac11:
mac:
name: Mac12

runs-on: macos-12
Expand All @@ -163,6 +163,10 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.8'

- name: symbolic link to python so GUI can find it
run: |
# sudo ln -s /Users/runner/hostedtoolcache/Python/3.8.18/x64/bin/python /usr/bin/python

- name: Install packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion Gui/opensim/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@
<exec executable="chmod">
<arg line="+x dist/scripts/postinstall"/>
</exec>
<exec executable="/usr/bin/python" dir="dist/">
<exec executable="python" dir="dist/">
<arg line="set_folder_icon.py OpenSimFolder.icns 'pkgroot/OpenSim ${app.version}'"/>
</exec>
<exec executable="pkgbuild" dir="dist/">
Expand Down