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

Use lower case for macos in script names #266

Merged
merged 1 commit into from
Feb 18, 2024
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
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
Loading