File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ FROM conanio/gcc8 AS base
2+
3+ LABEL "com.github.actions.name" ="Conan build"
4+ LABEL "com.github.actions.description" ="Builds a Conan package"
5+
6+ LABEL "maintainer" =
"Dmitry Arkhipov <[email protected] >" 7+
8+ USER root
9+ ADD entrypoint.sh /entrypoint.sh
10+ ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1+ #! /bin/sh -l
2+
3+ eval " $( pyenv init -) "
4+ eval " $( pyenv virtualenv-init -) "
5+ conan remote add upload https://api.bintray.com/conan/grisumbras/conan
6+ conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
7+ conan create . grisumbras/testing
Original file line number Diff line number Diff line change 1+ workflow "CI" {
2+ on = " push"
3+ resolves = " build"
4+ }
5+
6+ action "build" {
7+ uses = " ./.github/ci/"
8+ }
Original file line number Diff line number Diff line change 44)
55
66
7- b2 = python_requires ("b2-helper/0.2.0@grisumbras/dev " )
7+ b2 = python_requires ("b2-helper/0.2.0@grisumbras/testing " )
88
99
1010class EnumFlagsTestConan (b2 .B2 .Mixin , ConanFile ):
You can’t perform that action at this time.
0 commit comments