-
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apparently `brew test` tries to build dependencies of `brew bundle`. And it seems like it depends on ronn, which is [dead][1]. The worst part is that ronn depends on rdiscount 2.2.0.2, which fails to build. Didn't dig too much into it, but [seems like][2] it's also not in high priority. Homebrew issue tracker is silent and I don't feel safe to report anything there, so with this commit going to do simple thing - avoid using `brew test`. Since I don't have `brew` right now, I am just going to see if `brew --prefix` does what I expect. Will turn it into real test later. [1]: rtomayko/ronn#103 [2]: davidfstr/rdiscount#148
- Loading branch information
1 parent
c41625e
commit bb62328
Showing
6 changed files
with
7 additions
and
32 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 |
---|---|---|
|
@@ -38,9 +38,4 @@ jobs: | |
run: brew install ./Formula/[email protected] ${{ matrix.build_opts }} | ||
|
||
- name: Test installation | ||
if: contains(matrix.build_opts, '--HEAD') == false | ||
run: brew test ./Formula/[email protected] | ||
|
||
- name: Test installation (--HEAD) | ||
if: contains(matrix.build_opts, '--HEAD') | ||
run: brew test ./Formula/[email protected] --HEAD | ||
run: $(brew --prefix)/bin/emacs --batch --eval='(print (+ 2 2))' |
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 |
---|---|---|
|
@@ -47,9 +47,4 @@ jobs: | |
run: brew install ./Formula/[email protected] ${{ matrix.build_opts }} | ||
|
||
- name: Test installation | ||
if: contains(matrix.build_opts, '--HEAD') == false | ||
run: brew test ./Formula/[email protected] | ||
|
||
- name: Test installation (--HEAD) | ||
if: contains(matrix.build_opts, '--HEAD') | ||
run: brew test ./Formula/[email protected] --HEAD | ||
run: $(brew --prefix)/bin/emacs --batch --eval='(print (+ 2 2))' |
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 |
---|---|---|
|
@@ -46,9 +46,4 @@ jobs: | |
run: brew install ./Formula/[email protected] ${{ matrix.build_opts }} | ||
|
||
- name: Test installation | ||
if: contains(matrix.build_opts, '--HEAD') == false | ||
run: brew test ./Formula/[email protected] | ||
|
||
- name: Test installation (--HEAD) | ||
if: contains(matrix.build_opts, '--HEAD') | ||
run: brew test ./Formula/[email protected] --HEAD | ||
run: $(brew --prefix)/bin/emacs --batch --eval='(print (+ 2 2))' |
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 |
---|---|---|
|
@@ -46,9 +46,4 @@ jobs: | |
run: brew install ./Formula/[email protected] ${{ matrix.build_opts }} | ||
|
||
- name: Test installation | ||
if: contains(matrix.build_opts, '--HEAD') == false | ||
run: brew test ./Formula/[email protected] | ||
|
||
- name: Test installation (--HEAD) | ||
if: contains(matrix.build_opts, '--HEAD') | ||
run: brew test ./Formula/[email protected] --HEAD | ||
run: $(brew --prefix)/bin/emacs --batch --eval='(print (+ 2 2))' |
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