Commit Graph

12 Commits

Author SHA1 Message Date
Pascal Hartig
10c6a25aad Update bump binary for Linux
Summary: Followed README instructions.

Reviewed By: nikoant

Differential Revision: D29485164

fbshipit-source-id: 07b81ccaa9f3c318862323ca13a450fe99016020
2021-06-30 05:44:37 -07:00
Pascal Hartig
8168cd5346 Bump bump binaries
Summary: Rebuild the binaries for Mac and Linux with `stack build` and `stack build --docker`.

Reviewed By: mweststrate

Differential Revision: D28260516

fbshipit-source-id: 4b886c179e761e6d63209381bd21050e74a62fc7
2021-05-07 04:03:45 -07:00
Pascal Hartig
21cfa6921b Rebuild bump.lnx as static binary
Summary:
The dynamic verison ran on my devserver so I thought it was fine
but turns out our Lego host doesn't have the glibc version it linked
against: https://www.internalfb.com/intern/chronos/job?jobid=27021599014479361&smc=chronos_gp_admin_client

Reviewed By: fabiomassimo

Differential Revision: D27290193

fbshipit-source-id: 94f8048d6aa42d00401b433a622fe6af29126fd3
2021-03-24 04:46:14 -07:00
Pascal Hartig
94e85b54c8 Update Linux binary
Summary: Per title.

Reviewed By: mweststrate

Differential Revision: D27266704

fbshipit-source-id: cc34c6d12b6db29650b7f45ed1594c0794d75e56
2021-03-23 13:07:48 -07:00
Pascal Hartig
12ca12094d Linux artifact
Summary: Update the binary for Linux. Took me *a freaking hour* to build. I need an M1 Mac.

Reviewed By: mweststrate

Differential Revision: D26197862

fbshipit-source-id: e5a593743d239598bab1c8f29a778a49e17afcf8
2021-02-02 09:19:56 -08:00
Pascal Hartig
f1abd8a4a4 Update bump binaries
Summary: Update pre-compiled binaries in the repo by running `stack build` on Linux and MacOS.

Reviewed By: nikoant

Differential Revision: D21301515

fbshipit-source-id: f3b648c03a4ec7c680c88574caa3f4abbe5e0fe0
2020-04-29 06:34:58 -07:00
Pascal Hartig
1a794c57dd Update bump binaries
Summary: Ran `stack build`. Currently source and binaries are out of sync.

Reviewed By: jknoxville

Differential Revision: D20895907

fbshipit-source-id: df9a00633a7cb7515927390b49028376e757ccab
2020-04-07 12:21:36 -07:00
Pascal Hartig
939620830e Update binaries
Summary: allow-large-files

Reviewed By: nikoant

Differential Revision: D19691719

fbshipit-source-id: fb4e937410dbef70ad69bee208a4e673c13b1a22
2020-02-03 08:37:00 -08:00
Pascal Hartig
8a8316097a Update bump binaries
Summary: Compiled versions of scripts/bump/.

Reviewed By: priteshrnandgaonkar

Differential Revision: D17572052

fbshipit-source-id: 91f273b43daf4f59cdb0e7d2cd4ee97648ca53b9
2019-09-26 11:05:36 -07:00
Pascal Hartig
704634768f Update bump binary for Linux
Summary: This is the one used on sandcastle, built statically.

Reviewed By: jknoxville

Differential Revision: D15374415

fbshipit-source-id: 7b200e8630ce0a3a336cc46df26df367ed712fa1
2019-05-17 02:36:18 -07:00
Pascal Hartig
383cabe212 Update bump binaries
Summary:
Compiled statically for darwin and Linux (x86_64). Also
changed some flags to make this reproducible.

Reviewed By: danielbuechele

Differential Revision: D13801305

fbshipit-source-id: d98701afca3c4787922d377bc6b674b59421f5b8
2019-01-24 04:43:15 -08:00
Pascal Hartig
dc05fde28d Add version bumping script for Android
Summary:
Adding binaries and source as build times can be a bit long.

```
$ ./bump.sh
Flipper Version Bumper

Usage: bump.lnx64 VERSION

Available options:
  -h,--help                Show this help text
  VERSION                  Version to bump to, e.g. 1.0.2
```

```
$ ./bump.sh 1.0.2
Starting bump to Version "1.0.2".
Updating version in FilePath "/home/realpassy/local/fbsource/xplat/sonar/gradle.properties"
Updating version in FilePath "/home/realpassy/local/fbsource/xplat/sonar/docs/getting-started.md"
Done!
```

```
$ hg diff
 diff --git a/xplat/sonar/docs/getting-started.md b/xplat/sonar/docs/getting-started.md
 --- a/xplat/sonar/docs/getting-started.md
+++ b/xplat/sonar/docs/getting-started.md
@@ -44,7 +44,7 @@
 }

 dependencies {
-  debugImplementation 'com.facebook.flipper:flipper:0.6.18'
+  debugImplementation 'com.facebook.flipper:flipper:1.0.2'
 }

 diff --git a/xplat/sonar/gradle.properties b/xplat/sonar/gradle.properties
 --- a/xplat/sonar/gradle.properties
+++ b/xplat/sonar/gradle.properties
@@ -1,5 +1,5 @@
 # POM publishing constants
-VERSION_NAME=0.6.19-SNAPSHOT
+VERSION_NAME=1.0.2
 GROUP=com.facebook.flipper
 POM_URL=https://github.com/facebook/flipper
 POM_SCM_URL=https://github.com/facebook/flipper.git

```

Reviewed By: danielbuechele

Differential Revision: D9629787

fbshipit-source-id: b11870236809daa393dcef7eaf98ba9018ad7154
2018-09-03 07:57:15 -07:00