-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (46 loc) · 1.43 KB
/
macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: macos
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
macos-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Upgrade zsh
run: brew install zsh
- name: Remove existing symlinks
run: |
rm -rf /usr/local/bin/aws
rm -rf /usr/local/bin/aws_completer
rm -rf /usr/local/bin/go
rm -rf /usr/local/bin/gofmt
- name: Cache Homebrew and setup results
uses: actions/cache@v3
id: cache-setup
with:
path: |
/usr/local/Cellar
/usr/local/Homebrew
key: macos-setup-${{ runner.os }}-${{ hashFiles('**/Brewfile') }}
restore-keys: |
macos-setup-${{ runner.os }}-
- name: Run setup.sh
if: steps.cache-setup.outputs.cache-hit != 'true'
run: |
export HOMEBREW_BUNDLE_MAS_SKIP=$(brew bundle list --mas | paste -sd " " -)
${GITHUB_WORKSPACE}/setup.sh
env:
HOMEBREW_BUNDLE_BREW_SKIP: "go mono"
HOMEBREW_BUNDLE_CASK_SKIP: "docker"
# - name: Load .zshenv
# run: |
# zsh ~/.zshenv 2> error.log; cat error.log
# if [ -s error.log ]; then false; fi
# - name: Load .zshrc
# run: |
# export TERM="xterm-256color"
# source ~/.zshrc 2> error.log; cat error.log
# if [ -s error.log ]; then false; fi