-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move homebrew mentions to new repository (#3776)
We are migrating from the kframework organisation to the RV one; this PR redirects all of our internal usages of the Homebrew tap to the new location.
- Loading branch information
Showing
4 changed files
with
10 additions
and
10 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 |
---|---|---|
|
@@ -159,7 +159,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
id: checkout | ||
with: | ||
repository: kframework/homebrew-k | ||
repository: runtimeverification/homebrew-k | ||
path: homebrew-k | ||
ref: staging | ||
continue-on-error: true | ||
|
@@ -168,7 +168,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
if: ${{ steps.checkout.outcome == 'failure' }} | ||
with: | ||
repository: kframework/homebrew-k | ||
repository: runtimeverification/homebrew-k | ||
path: homebrew-k | ||
|
||
- name: Cache maven | ||
|
@@ -235,7 +235,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
id: checkout | ||
with: | ||
repository: kframework/homebrew-k | ||
repository: runtimeverification/homebrew-k | ||
path: homebrew-k | ||
ref: staging | ||
persist-credentials: false | ||
|
@@ -245,7 +245,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
if: ${{ steps.checkout.outcome == 'failure' }} | ||
with: | ||
repository: kframework/homebrew-k | ||
repository: runtimeverification/homebrew-k | ||
path: homebrew-k | ||
persist-credentials: false | ||
|
||
|
@@ -269,7 +269,7 @@ jobs: | |
# test suite, so the PL-tutorial is disabled for now. | ||
# - https://github.com/runtimeverification/k/issues/3705 | ||
cd homebrew-k-old | ||
brew tap kframework/k "file:///$(pwd)" | ||
brew tap runtimeverification/k "file:///$(pwd)" | ||
brew install ${{ needs.macos-build.outputs.bottle_path }} -v | ||
# cp -R /usr/local/share/kframework/pl-tutorial ~ | ||
# WD=`pwd` | ||
|
@@ -311,7 +311,7 @@ jobs: | |
cp homebrew-k-old/Formula/kframework.rb homebrew-k/Formula/kframework.rb | ||
cd homebrew-k | ||
git commit -m 'Update brew package version' Formula/kframework.rb | ||
git remote set-url origin [email protected]:kframework/homebrew-k.git | ||
git remote set-url origin [email protected]:runtimeverification/homebrew-k.git | ||
git push origin master | ||
- name: 'Delete Release' | ||
|
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh -ex | ||
package="$1" ; shift | ||
version="$1" ; shift | ||
brew tap kframework/k "file:///$(pwd)" | ||
brew tap runtimeverification/k "file:///$(pwd)" | ||
brew install $package--$version.*.bottle*.tar.gz -v |