chore(script): remove the prefix of pkg-vsn.sh
This commit is contained in:
parent
5d766f854e
commit
b12d4f481f
|
@ -1,8 +1,9 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -x -e -u
|
set -x -e -u
|
||||||
|
export CODE_PATH=${CODE_PATH:-"/emqx"}
|
||||||
export EMQX_NAME=${EMQX_NAME:-"emqx"}
|
export EMQX_NAME=${EMQX_NAME:-"emqx"}
|
||||||
export PACKAGE_PATH="/emqx/_packages/${EMQX_NAME}"
|
export PACKAGE_PATH="${CODE_PATH}/_packages/${EMQX_NAME}"
|
||||||
export RELUP_PACKAGE_PATH="/emqx/relup_packages/${EMQX_NAME}"
|
export RELUP_PACKAGE_PATH="${CODE_PATH}/relup_packages/${EMQX_NAME}"
|
||||||
# export EMQX_NODE_NAME="emqx-on-$(uname -m)@127.0.0.1"
|
# export EMQX_NODE_NAME="emqx-on-$(uname -m)@127.0.0.1"
|
||||||
# export EMQX_NODE_COOKIE=$(date +%s%N)
|
# export EMQX_NODE_COOKIE=$(date +%s%N)
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
name: Build slim packages
|
||||||
|
|
||||||
|
on: [pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
erl_otp:
|
||||||
|
- erl23.2.2
|
||||||
|
os:
|
||||||
|
- ubuntu20.04
|
||||||
|
- centos8
|
||||||
|
|
||||||
|
container: emqx/build-env:${{ matrix.erl_otp }}-${{ matrix.os }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: build packages
|
||||||
|
run: make emqx-pkg
|
||||||
|
- name: pakcages test
|
||||||
|
run: |
|
||||||
|
export CODE_PATH=$GITHUB_WORKSPACE
|
||||||
|
.ci/build_packages/tests.sh
|
|
@ -25,12 +25,8 @@
|
||||||
%% plugins had a bug to fix. So for a hot beam upgrade, only the app
|
%% plugins had a bug to fix. So for a hot beam upgrade, only the app
|
||||||
%% with beam files changed needs an upgrade.
|
%% with beam files changed needs an upgrade.
|
||||||
|
|
||||||
%% NOTE: The version string prefix should be:
|
|
||||||
%% 'v' for opensource edition
|
|
||||||
%% 'e' for enterprise edition
|
|
||||||
|
|
||||||
%% NOTE: This version number should be manually bumped for each release
|
%% NOTE: This version number should be manually bumped for each release
|
||||||
|
|
||||||
-define(EMQX_RELEASE, "v4.3-beta.1").
|
-define(EMQX_RELEASE, "4.3-beta.1").
|
||||||
|
|
||||||
-endif.
|
-endif.
|
||||||
|
|
Loading…
Reference in New Issue