Changed instructions for alpha/release, now that we have some commands for them. authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame
......@@ -212,8 +212,14 @@ Otherwise, if you really don't want to generate the incrementals, you can simply
rbm/rbm build release --step update_responses_config --target nightly --target torbrowser
```
For `release` and `alpha`, you cannot use the respective `make` targets.
You will have to use the above command to generate the configuration first, adjust it to use the unsigned build directory:
For `release` and `alpha`, you can use these `make` targets:
```shell
make torbrowser-incrementals-alpha-unsigned
make torbrowser-incrementals-release-unsigned
```
Otherwise, you will have to use the above command to generate the configuration first, adjust it to use the unsigned build directory:
```yaml
versions:
......@@ -235,8 +241,16 @@ Updating the `download` section in this way should be enough:
```yaml
download:
bundles_url: https://tb-build-05.torproject.org/~pierov/torbrowser/nightly
mars_url: https://tb-build-05.torproject.org/~pierov/torbrowser/nightly
bundles_url: https://tb-build-03.torproject.org/~pierov/torbrowser/nightly
mars_url: https://tb-build-03.torproject.org/~pierov/torbrowser/nightly
```
or
```yaml
download:
bundles_url: https://tb-build-03.torproject.org/~pierov/torbrowser/alpha/unsigned
mars_url: https://tb-build-03.torproject.org/~pierov/torbrowser/alpha/unsigned
```
`~/public_html/torbrowser` in this case is a link to the `torbrowser` directory in the clone of `tor-browser-build` when I ran the build.
......
......