-
Notifications
You must be signed in to change notification settings - Fork 1
74 lines (69 loc) · 2.19 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Build
on:
push:
workflow_dispatch:
env:
PACT_BROKER_BASE_URL: https://test.pactflow.io
PACT_BROKER_TOKEN: ${{ secrets.PACTFLOW_TOKEN_FOR_CI_CD_WORKSHOP }}
GIT_COMMIT: ${{ github.sha }}
GIT_REF: ${{ github.ref }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: "3.8"
# - name: Install python version
# uses: gabrielfalcao/pyenv-action@v10
# with:
# default: 3.8.13
# command: pip install -U pip # upgrade pip after installing python
# - name: Create virtualenv for python 3.5.7
# run: pyenv local 3.8.13 && python3 -mvenv .venv
# - name: venv
# run: pyenv local 3.8.13 && python3 -mvenv .venv3813
- name: install pyenv
run: curl https://pyenv.run | bash
- name: set pyenv on path
run: |
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" >> .bashrc
eval "$(pyenv init -)" >> .bashrc
eval "$(pyenv virtualenv-init -)" >> .bashrc
source ~/.bashrc
echo PATH="$PYENV_ROOT/bin:$PATH" >> $GITHUB_ENV
- name: Install poetry
run: pip install poetry
- name: Setup Virtual env
run: make venv
- name: Install
run: make deps
- name: Activate virtual env
run: |
source .venv/bin/activate
make test
# - name: Test
# run: make test
- name: Publish pacts
run: GIT_BRANCH=${GIT_REF:11} make publish_pacts
# Runs on branches as well, so we know the status of our PRs
can-i-deploy:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v2
- run: docker pull pactfoundation/pact-cli:latest
- name: Can I deploy?
run: GIT_BRANCH=${GIT_REF:11} make can_i_deploy
# Only deploy from main
deploy:
runs-on: ubuntu-latest
needs: can-i-deploy
steps:
- uses: actions/checkout@v2
- run: docker pull pactfoundation/pact-cli:latest
- name: Deploy
run: GIT_BRANCH=${GIT_REF:11} make deploy
if: github.ref == 'refs/heads/main'