Skip to content

Commit

Permalink
0.30.0a7 to test pex binary (kapicorp#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramaro authored Jan 14, 2022
1 parent 2ba7e1d commit 9498d0c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/pex-build-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,19 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
# TODO move to actions/setup-go@v2
- name: Install dependencies
python-version: '3.7 - 3.9'
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pex
curl -fsSL -o go.tar.gz https://go.dev/dl/go1.17.3.linux-amd64.tar.gz
tar -C /tmp -xzf go.tar.gz && rm go.tar.gz
- name: Build Pex
run: |-
mkdir -p dist
PATH=$PATH:/tmp/go/bin pex .[gojsonnet] -r requirements.txt --python-shebang='#!/usr/bin/env python3' --python=python3.7 --python=python3.8 --python=python3.9 -m kapitan -o dist/kapitan.linux-x86_64.pex
pex .[gojsonnet] -r requirements.txt --python-shebang='#!/usr/bin/env python3' --python=python3.7 --python=python3.8 --python=python3.9 -m kapitan -o dist/kapitan.linux-x86_64.pex
- name: Add linux-x86_64 pex to assets
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion kapitan/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""Project description variables."""

PROJECT_NAME = "kapitan"
VERSION = "0.30.0a6"
VERSION = "0.30.0a7"
DESCRIPTION = "Generic templated configuration management for Kubernetes, Terraform and other things"
AUTHOR = "Ricardo Amaro"
AUTHOR_EMAIL = "ramaro@kapicorp.com"
Expand Down

0 comments on commit 9498d0c

Please sign in to comment.