Skip to content

Commit

Permalink
Fix Mac Github workflow CI (#154)
Browse files Browse the repository at this point in the history
* fix mac ci - release and debug
  • Loading branch information
michaeldsmith authored Jun 4, 2024
1 parent 73aa991 commit 96465cd
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/mac_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:

steps:

- name: uninstall openexr
run: brew uninstall --ignore-dependencies openexr
# - name: uninstall openexr
# run: brew uninstall --ignore-dependencies openexr

- name: uninstall imath
run: brew uninstall --ignore-dependencies imath
# - name: uninstall imath
# run: brew uninstall --ignore-dependencies imath

- name: install dependencies - openexr v2.5
run: |
Expand All @@ -38,7 +38,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand All @@ -65,7 +65,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- name: install dependencies - openexr v3.1
run: |
Expand All @@ -77,7 +77,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand All @@ -96,11 +96,11 @@ jobs:

steps:

- name: uninstall openexr
run: brew uninstall --ignore-dependencies openexr
# - name: uninstall openexr
# run: brew uninstall --ignore-dependencies openexr

- name: uninstall imath
run: brew uninstall --ignore-dependencies imath
# - name: uninstall imath
# run: brew uninstall --ignore-dependencies imath

- name: install dependencies - openexr v2.5
run: |
Expand All @@ -112,7 +112,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- name: install dependencies - openexr v3.1
run: |
Expand All @@ -157,7 +157,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/mac_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:

steps:

- name: uninstall openexr
run: brew uninstall --ignore-dependencies openexr
# - name: uninstall openexr
# run: brew uninstall --ignore-dependencies openexr

- name: uninstall imath
run: brew uninstall --ignore-dependencies imath
# - name: uninstall imath
# run: brew uninstall --ignore-dependencies imath

- name: install dependencies - openexr v2.5
run: |
Expand All @@ -64,7 +64,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand All @@ -91,7 +91,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- name: install dependencies - openexr v3.1
run: |
Expand All @@ -103,7 +103,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand All @@ -130,7 +130,7 @@ jobs:
cd build &&
cmake -DBUILD_SHARED_LIBS=OFF .. &&
make &&
make install
sudo make install
- name: install dependencies - openexr v3.1
run: |
Expand All @@ -142,7 +142,7 @@ jobs:
cd build &&
cmake -DBUILD_SHARED_LIBS=OFF .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand All @@ -169,7 +169,7 @@ jobs:
cd build &&
cmake -DBUILD_SHARED_LIBS=ON .. &&
make &&
make install
sudo make install
- name: install dependencies - openexr v3.1
run: |
Expand All @@ -181,7 +181,7 @@ jobs:
cd build &&
cmake -DBUILD_SHARED_LIBS=ON .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand Down Expand Up @@ -232,11 +232,11 @@ jobs:

steps:

- name: uninstall openexr
run: brew uninstall --ignore-dependencies openexr
# - name: uninstall openexr
# run: brew uninstall --ignore-dependencies openexr

- name: uninstall imath
run: brew uninstall --ignore-dependencies imath
# - name: uninstall imath
# run: brew uninstall --ignore-dependencies imath

- name: install dependencies - openexr v2.5
run: |
Expand All @@ -248,7 +248,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- name: install dependencies - openexr v3.1
run: |
Expand All @@ -293,7 +293,7 @@ jobs:
cd build &&
cmake .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
cd build &&
cmake -DBUILD_SHARED_LIBS=OFF .. &&
make &&
make install
sudo make install
- name: install dependencies - openexr v3.1
run: |
Expand All @@ -338,7 +338,7 @@ jobs:
cd build &&
cmake -DBUILD_SHARED_LIBS=OFF .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
cd build &&
cmake -DBUILD_SHARED_LIBS=ON .. &&
make &&
make install
sudo make install
- name: install dependencies - openexr v3.1
run: |
Expand All @@ -383,7 +383,7 @@ jobs:
cd build &&
cmake -DBUILD_SHARED_LIBS=ON .. &&
make &&
make install
sudo make install
- uses: actions/checkout@v3

Expand Down

0 comments on commit 96465cd

Please sign in to comment.