Skip to content

Commit

Permalink
Use lower case for macos in script names
Browse files Browse the repository at this point in the history
Let's not get into trouble with that case insensitive file system.
  • Loading branch information
SeanTAllen committed Feb 18, 2024
1 parent 05079b9 commit 50e5b61
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macOS-arm64-install-pony-tools.bash nightly
run: bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly
- name: brew install dependencies
run: brew install coreutils
- name: Test with most recent ponyc release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macOS-x86-install-pony-tools.bash nightly
run: bash .ci-scripts/macos-x86-install-pony-tools.bash nightly
- name: brew install dependencies
run: brew install coreutils
- name: Test with most recent ponyc release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macOS-x86-install-pony-tools.bash release
run: bash .ci-scripts/macos-x86-install-pony-tools.bash release
- name: brew install dependencies
run: brew install coreutils
- name: pip install dependencies
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macOS-arm64-install-pony-tools.bash nightly
run: bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly
- name: brew install dependencies
run: brew install coreutils
- name: pip install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macOS-x86-install-pony-tools.bash release
run: bash .ci-scripts/macos-x86-install-pony-tools.bash release
- name: brew install dependencies
run: brew install coreutils
- name: Test with most recent ponyc release
Expand All @@ -82,7 +82,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macOS-arm64-install-pony-tools.bash nightly
run: bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly
- name: brew install dependencies
run: brew install coreutils
- name: Test with most recent ponyc release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macOS-x86-install-pony-tools.bash release
run: bash .ci-scripts/macos-x86-install-pony-tools.bash release
- name: brew install dependencies
run: brew install coreutils
- name: pip install dependencies
Expand All @@ -67,7 +67,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: install ponyc
run: bash .ci-scripts/macOS-arm64-install-pony-tools.bash nightly
run: bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly
- name: brew install dependencies
run: brew install coreutils
- name: pip install dependencies
Expand Down

0 comments on commit 50e5b61

Please sign in to comment.