fix github actions #136
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
name: macos | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
macos-test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Remove existing symlinks | |
run: | | |
rm -rf /usr/local/bin/aws | |
rm /usr/local/bin/aws_completer | |
rm -rf /usr/local/bin/go | |
rm -rf /usr/local/bin/gofmt | |
brew unlink jpeg-turbo | |
brew link --overwrite arm-none-eabi-gcc@9 | |
- name: Run setup.sh | |
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: Run deploy | |
run: | | |
make deploy | |
# - 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 |