Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengtuggy committed Dec 3, 2023
1 parent b752a68 commit 7f264f5
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/macos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,17 @@ jobs:
env:
HOMEBREW_NO_INSTALL_UPGRADE: 1
PYTHON_VERSION_STRING: "python@${{ matrix.python-version }}"

steps:
- name: Check out repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
fetch-depth: 2
submodules: false

- name: Conditionally relocate to PR HEAD
if: github.event.pull_request
run: git checkout ${{ github.event.pull_request.head.sha }}

# The following dependencies are already present within macos-* images:
# - clang (llvm)
Expand Down Expand Up @@ -86,16 +96,6 @@ jobs:
. ./script/brew-install-for-cmake.sh openal-soft
export OPENALDIR=$(brew --prefix openal-soft)
- name: Check out repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
with:
fetch-depth: 2
submodules: false

- name: Conditionally relocate to PR HEAD
if: github.event.pull_request
run: git checkout ${{ github.event.pull_request.head.sha }}

- name: Build it
env:
MY_OS_NAME: macos
Expand Down

0 comments on commit 7f264f5

Please sign in to comment.