Skip to content

Commit c06694e

Browse files
committed
ci: move imgtool publishing to GH workflows
Disable imgtool publishing on Travis; update scripts to work on both Travis and GH; add GH workflow for publishing. Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
1 parent 3236d75 commit c06694e

File tree

3 files changed

+36
-9
lines changed

3 files changed

+36
-9
lines changed

.github/workflows/imgtool.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
6+
jobs:
7+
environment:
8+
name: Publish imgtool releases
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
14+
- name: Install publishing packages
15+
run: |
16+
export PATH="$HOME/.local/bin:$PATH"
17+
./ci/imgtool_install.sh
18+
- name: Publish imgtool
19+
env:
20+
TWINE_TOKEN: ${{ secrets.TWINE_TOKEN }}
21+
run: |
22+
export PATH="$HOME/.local/bin:$PATH"
23+
./ci/imgtool_run.sh

ci/imgtool_install.sh

+6-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
if [[ $TRAVIS_PULL_REQUEST != "false" || $TRAVIS_BRANCH != "master" ]]; then
16-
echo "Either a PR or not \"master\" branch, exiting"
17-
exit 0
15+
if [[ $TRAVIS == "true" ]]; then
16+
if [[ $TRAVIS_PULL_REQUEST != "false" || $TRAVIS_BRANCH != "master" ]]; then
17+
echo "Either a PR or not \"master\" branch, exiting"
18+
exit 0
19+
fi
1820
fi
1921

2022
pip3 install setuptools twine packaging
21-
pip3 install --pre imgtool
23+
pip3 install --pre imgtool --no-binary :all:

ci/imgtool_run.sh

+7-5
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,25 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
if [[ $TRAVIS_PULL_REQUEST != "false" || $TRAVIS_BRANCH != "master" ]]; then
16-
echo "Either a PR or not \"master\" branch, exiting"
17-
exit 0
15+
if [[ $TRAVIS == "true" ]]; then
16+
if [[ $TRAVIS_PULL_REQUEST != "false" || $TRAVIS_BRANCH != "master" ]]; then
17+
echo "Either a PR or not \"master\" branch, exiting"
18+
exit 0
19+
fi
1820
fi
1921

2022
IMGTOOL_VER_PREFIX="\+imgtool_version = "
2123
IMGTOOL_VER_FILE="imgtool/__init__.py"
2224
DIST_DIR="dist"
2325

2426
if [[ -z "$TWINE_TOKEN" ]]; then
25-
echo "\$TWINE_TOKEN must be set in travis settings"
27+
echo "\$TWINE_TOKEN must be set in Travis or GH settings"
2628
exit 0
2729
fi
2830

2931
cd scripts/
3032

31-
last_release=$(pip show imgtool | grep "Version: " | cut -d" " -f2)
33+
last_release=$(pip3 show imgtool | grep "Version: " | cut -d" " -f2)
3234
repo_version=$(grep "imgtool_version = " imgtool/__init__.py | sed 's/^.* = "\(.*\)"/\1/g')
3335

3436
python3 ../ci/compare_versions.py --old $last_release --new $repo_version

0 commit comments

Comments
 (0)