Skip to content

Commit e3ea413

Browse files
ehildenbrv-jenkins
authored andcommitted
Brew bottle location (#525)
* Jenkinsfile: update brew bottle location * INSTALL: add instructions for macOS package * !!! Jenkinsfile: debug/test release * Jenkinsfile: formatting * Jenkinsfile: remove `*` from mojave package path * Revert "!!! Jenkinsfile: debug/test release" This reverts commit 495ac0c. * Revert "Jenkinsfile: remove `*` from mojave package path" This reverts commit ec1c700. * Jenkinsfile: globa-loba-glob-glob
1 parent fdecda7 commit e3ea413

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

INSTALL.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Current supported systems are:
66

77
- Ubuntu Bionic (18.04)
88
- Debian Buster
9+
- Mac OS X Mojave
910

1011
Downloading Packages
1112
--------------------
@@ -24,6 +25,15 @@ Install the package with (`X.Y.Z` is version number, `ID` is platform identifier
2425
sudo apt install ./kevm_X.Y.Z_amd64_ID.deb
2526
```
2627

28+
### Mac OS X Mojave
29+
30+
Tap the `kframework/k` bottle then install the downloaded `kevm` bottle:
31+
32+
```sh
33+
brew tap kframework/k "file:///$(pwd)"
34+
brew install "kevm--X.Y.Z.mojave.bottle.tar.gz" -v
35+
```
36+
2737
Building Packages
2838
-----------------
2939

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -440,10 +440,10 @@ pipeline {
440440
mv bionic/kevm_${KEVM_RELEASE_ID}_amd64.deb bionic/kevm_${KEVM_RELEASE_ID}_amd64_bionic.deb
441441
mv buster/kevm_${KEVM_RELEASE_ID}_amd64.deb buster/kevm_${KEVM_RELEASE_ID}_amd64_buster.deb
442442
hub release create \
443-
--attach "kevm-${KEVM_RELEASE_ID}-src.tar.gz#Source tar.gz" \
444-
--attach "bionic/kevm_${KEVM_RELEASE_ID}_amd64_bionic.deb#Ubuntu Bionic (18.04) Package" \
445-
--attach "buster/kevm_${KEVM_RELEASE_ID}_amd64_buster.deb#Debian Buster (10) Package" \
446-
--attach mojave/kevm-5.0.0.mojave.bottle*.tar.gz"#Mac OS X Homebrew Bottle" \
443+
--attach kevm-${KEVM_RELEASE_ID}-src.tar.gz"#Source tar.gz" \
444+
--attach bionic/kevm_${KEVM_RELEASE_ID}_amd64_bionic.deb"#Ubuntu Bionic (18.04) Package" \
445+
--attach buster/kevm_${KEVM_RELEASE_ID}_amd64_buster.deb"#Debian Buster (10) Package" \
446+
--attach mojave/kevm--${KEVM_RELEASE_ID}.mojave.bottle*.tar.gz"#Mac OS X Homebrew Bottle" \
447447
--file "release.md" "${release_tag}"
448448
# --attach "arch/kevm-${KEVM_RELEASE_ID}/package/kevm-git-${KEVM_RELEASE_ID}-1-x86_64.pkg.tar.xz#Arch Package" \
449449
'''

0 commit comments

Comments
 (0)