-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Joel Winarske <[email protected]>
- Loading branch information
Showing
6 changed files
with
204 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
MacOS sudo free | ||
|
||
Signed-off-by: Joel Winarske <[email protected]> | ||
|
||
# Please enter the commit message for your changes. Lines starting | ||
# with '#' will be ignored, and an empty message aborts the commit. | ||
# | ||
# Date: Tue Feb 4 09:26:57 2025 -0800 | ||
# | ||
# On branch jw/macos | ||
# Your branch is up to date with 'origin/jw/macos'. | ||
# | ||
# Changes to be committed: | ||
# new file: .github/workflows/macos.yaml | ||
# renamed: .github/workflows/workspace-automation.yml -> .github/workflows/ubuntu.yml | ||
# modified: common.py | ||
# modified: configs/toolchain-llvm-18.json | ||
# modified: flutter_workspace.py | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: macos-workspace-automation | ||
|
||
on: | ||
pull_request: | ||
types: [ opened, synchronize, reopened, closed ] | ||
release: | ||
types: [ published, created, edited ] | ||
workflow_dispatch: | ||
schedule: | ||
# daily | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
|
||
workspace-automation: | ||
|
||
env: | ||
NONINTERACTIVE: 1 | ||
HOMEBREW_NO_AUTO_UPDATE: 1 | ||
|
||
strategy: | ||
matrix: | ||
os: [ macos-14, macos-15 ] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Brew fixup | ||
run: | | ||
brew uninstall [email protected] | true | ||
brew unlink [email protected] | true | ||
brew uninstall [email protected] | true | ||
brew link --overwrite openssl@3 | ||
brew untap homebrew/cask | true | ||
brew untap homebrew/core | true | ||
brew install ruby | true | ||
brew update | ||
brew upgrade | ||
brew cleanup |true | ||
brew doctor |true | ||
ruby -v | ||
- name: Create workspace | ||
run: | | ||
./flutter_workspace.py | ||
- name: Test workspace | ||
run: | | ||
source ./setup_env.sh | ||
flutter doctor -v | ||
dart --version |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.