Skip to content

Commit

Permalink
Fix failing MacOS 11 tests and remove obsolete build platforms
Browse files Browse the repository at this point in the history
Integrated via #415

Merge branch 'chrysle:fix-macos-11-tests'
  • Loading branch information
inkarkat committed Jun 30, 2023
2 parents ea32af3 + aa38153 commit c8fa5f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test:
strategy:
matrix:
platform: [ubuntu-20.04, ubuntu-18.04, macos-11, macos-10.15]
platform: [ubuntu-20.04, macos-11]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion todo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,8 @@ replaceOrPrepend()
fixMissingEndOfLine()
{
# Parameters: $1: todo file; empty means $TODO_FILE.
sed -i.bak -e '$a\' "${1:-$TODO_FILE}"
todo_path="${1:-$TODO_FILE}"
[[ -f $todo_path && $(tail -c1 "$todo_path") ]] && echo "" >> "$todo_path"
}

uppercasePriority()
Expand Down

0 comments on commit c8fa5f1

Please sign in to comment.