-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from LyraPhase/update-to-3.11.4
Update to 3.11.4
- Loading branch information
Showing
6 changed files
with
107 additions
and
7 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 @@ | ||
1647410082 |
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,80 @@ | ||
--- | ||
name: ci | ||
|
||
"on": | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
- develop | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- develop | ||
env: | ||
debug_ci: false | ||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-11] | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Set BREWFILE_PATH env var | ||
run: | | ||
echo "BREWFILE_PATH=${GITHUB_WORKSPACE}/Brewfile.ci" >> $GITHUB_ENV | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
- name: Add SSH_AUTH_SOCK to user shell .profile | ||
run: | | ||
sudo tee -a ~/.profile <<EOPROFILE | ||
SSH_AUTH_SOCK=${{ env.SSH_AUTH_SOCK }} | ||
EOPROFILE | ||
- name: Configure global git SSH URLs | ||
run: | | ||
git config --global url."[email protected]:".insteadOf "https://github.com/" | ||
- name: Configure Homebrew cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/Library/Caches/Homebrew/*--* | ||
~/Library/Caches/Homebrew/downloads/*--* | ||
~/Library/Caches/Homebrew/Cask/*--* | ||
key: brew-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('.github/clear_github_actions_cache') }}-${{ hashFiles( env.BREWFILE_PATH, '**/Brewfile.lock.json') }} | ||
restore-keys: | | ||
brew-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('.github/clear_github_actions_cache') }}-${{ hashFiles( env.BREWFILE_PATH, '**/Brewfile.lock.json') }} | ||
brew-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('.github/clear_github_actions_cache') }} | ||
- name: Run brew update | ||
run: | | ||
brew update | ||
- name: Install dependencies & Clean homebrew cache | ||
run: | | ||
brew cleanup | ||
brew bundle install --file=${BREWFILE_PATH} | ||
- name: DEBUG - GitHub Workspace | ||
run: | | ||
echo GITHUB_WORKSPACE=$GITHUB_WORKSPACE | ||
if: env.debug_ci == true | ||
- name: DEBUG - Print all shell env exports | ||
run: export -p | ||
if: env.debug_ci == true | ||
- name: DEBUG - List workspace and Homebrew contents | ||
run: | | ||
ls -lR ${GITHUB_WORKSPACE} | ||
ls -lR /usr/local/Homebrew | ||
if: env.debug_ci == true | ||
- name: Run tap install | ||
run: make install | ||
- name: Run test & install | ||
run: | | ||
make test | ||
- name: Upload install.log on failure | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Build failure logs | ||
path: /var/log/install.log |
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
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