Skip to content

Commit

Permalink
docs: improve docs and update apache release scripts (#11457)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar authored Oct 28, 2020
1 parent 894b94a commit 81a0526
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
4 changes: 2 additions & 2 deletions RELEASING/Dockerfile.from_local_tarball
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM python:3.7-jessie
FROM python:3.7-buster

RUN useradd --user-group --create-home --no-log-init --shell /bin/bash superset

Expand Down Expand Up @@ -56,7 +56,7 @@ RUN npm ci \

WORKDIR /home/superset/apache-superset-incubating-$VERSION
RUN pip install --upgrade setuptools pip \
&& pip install -r requirements.txt \
&& pip install -r requirements/base.txt \
&& pip install --no-cache-dir .

RUN flask fab babel-compile --target superset/translations
Expand Down
2 changes: 1 addition & 1 deletion RELEASING/Dockerfile.from_svn_tarball
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM python:3.7-jessie
FROM python:3.7-buster

RUN useradd --user-group --create-home --no-log-init --shell /bin/bash superset

Expand Down
2 changes: 1 addition & 1 deletion RELEASING/Dockerfile.make_docs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM python:3.7-jessie
FROM python:3.7-buster
ARG VERSION

RUN git clone --depth 1 --branch ${VERSION} https://github.com/apache/incubator-superset.git /superset
Expand Down
2 changes: 1 addition & 1 deletion RELEASING/Dockerfile.make_tarball
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM python:3.7-jessie
FROM python:3.7-buster

RUN apt-get update -y
RUN apt-get install -y jq
Expand Down
16 changes: 12 additions & 4 deletions RELEASING/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,19 @@ the wrong files/using wrong names. There's a script to help you set correctly al
necessary environment variables. Change your current directory to `superset/RELEASING`
and execute the `set_release_env.sh` script with the relevant parameters:

Usage (BASH):
```bash
# usage (BASH): . set_release_env.sh <SUPERSET_RC_VERSION> <PGP_KEY_FULLNAME>
# usage (ZSH): source set_release_env.sh <SUPERSET_RC_VERSION> <PGP_KEY_FULLNAME>
#
# example: source set_release_env.sh 0.37.0rc1 [email protected]
. set_release_env.sh <SUPERSET_RC_VERSION> <PGP_KEY_FULLNAME>
```

Usage (ZSH):
```bash
source set_release_env.sh <SUPERSET_RC_VERSION> <PGP_KEY_FULLNAME>
```

Example:
```bash
source set_release_env.sh 0.37.0rc1 [email protected]
```

The script will output the exported variables. Here's example for 0.37.0rc1:
Expand Down

0 comments on commit 81a0526

Please sign in to comment.