Skip to content

Commit

Permalink
chore: add .aiderignore and update CI workflows for macOS and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Dec 29, 2024
1 parent 9cea444 commit 2ab3abd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .aiderignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Add files or directories to ignore here

run
lint
test
install
clean
10 changes: 9 additions & 1 deletion .github/workflows/push_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install GCC
- name: Install GCC and Xcode tools
run: |
brew install gcc
brew upgrade
- name: Install macOS SDK headers
run: |
sudo rm -rf /Library/Developer/CommandLineTools
xcode-select --install || true
sudo xcode-select --reset
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: Install GCC
run: |
choco install gcc
choco install mingw
- name: Install dependencies
run: |
Expand Down

0 comments on commit 2ab3abd

Please sign in to comment.