Skip to content

Commit

Permalink
Use lowercase for macos in script names
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Feb 18, 2024
1 parent f21dbae commit fe2a30c
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/checkout@v4.1.1
- name: install pony tools
run: bash .ci-scripts/macOS-arm64-install-pony-tools.bash nightly
run: bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly
- name: Test with the most recent ponyc release
run: |
export PATH=/tmp/corral/bin/:/tmp/ponyc/bin/:$PATH
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1
- name: install pony tools
run: bash .ci-scripts/macOS-x86-install-pony-tools.bash nightly
run: bash .ci-scripts/macos-x86-install-pony-tools.bash nightly
- name: Test with the most recent ponyc release
run: |
export PATH=/tmp/corral/bin/:/tmp/ponyc/bin/:$PATH
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1
- name: install pony tools
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 @@ -93,7 +93,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1
- name: install pony tools
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 @@ -126,7 +126,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1
- name: install pony tools
run: bash .ci-scripts/macOS-x86-install-pony-tools.bash release
run: bash .ci-scripts/macos-x86-install-pony-tools.bash release
- name: Test with the most recent ponyc release
run: |
export PATH="/tmp/corral/bin:/tmp/ponyc/bin/:$PATH"
Expand All @@ -138,7 +138,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1
- name: install pony tools
run: bash .ci-scripts/macOS-arm64-install-pony-tools.bash nightly
run: bash .ci-scripts/macos-arm64-install-pony-tools.bash nightly
- name: Test with the most recent ponyc release
run: |
export PATH="/tmp/corral/bin:/tmp/ponyc/bin/:$PATH"
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/checkout@v4.1.1
- name: install pony tools
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 @@ -65,7 +65,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.1
- name: install pony tools
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 fe2a30c

Please sign in to comment.