forked from grisumbras/enum-flags
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (28 loc) · 758 Bytes
/
build.yml
File metadata and controls
34 lines (28 loc) · 758 Bytes
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
name: build
on:
push:
branches:
- '*'
- '!master'
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Pull sources
uses: actions/checkout@v1
- name: Configure Python
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install CPT
run: |
python -m pip install --upgrade pip
pip install conan_package_tools
pip install urllib3==1.25.3
- name: Run CPT
run: python build.py
env:
CONAN_USERNAME: grisumbras
CONAN_REMOTES: https://api.bintray.com/conan/bincrafters/public-conan
CONAN_UPLOAD: https://api.bintray.com/conan/grisumbras/conan
CONAN_PRINT_RUN_COMMANDS: 1