enabling actions#260
Conversation
intel#260 Change-Id: Ie04607e5a6f69966e19effb436a31c1de0dd585c Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
intel#260 Change-Id: Ie04607e5a6f69966e19effb436a31c1de0dd585c Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
d1a7fe9 to
f27570d
Compare
intel#260 Change-Id: Ie04607e5a6f69966e19effb436a31c1de0dd585c Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
f27570d to
151b599
Compare
AlexeySachkov
left a comment
There was a problem hiding this comment.
Hi there,
Feel free to ignore my comments, I'm just curious about GitHub actions by myself (example) and interested in review workflows in other projects to find some ideas or more examples
| matrix: | ||
| compiler: [gcc-5, gcc-6, gcc-7, gcc-8] | ||
| env: | ||
| WORKFLOW: CI |
There was a problem hiding this comment.
| WORKFLOW: CI | |
| WORKFLOW: ${{ github.workflow}} |
? Just to unify this line across different workflows
| env: | ||
| BUILD_OS: ubuntu-18.04 | ||
| COMPILER: ${{ matrix.compiler }} | ||
| run: ./neo/scripts/actions/run-action-build.sh |
There was a problem hiding this comment.
I guess this should launch a different script, right?
Would it be better to just express it via separate job in the CI workflow?
| BUILD_OS: ubuntu-18.04 | ||
| COMPILER: ${{ matrix.compiler }} | ||
| working-directory: neo/scripts/actions | ||
| run: ./run-action-docker-prepare.sh |
There was a problem hiding this comment.
What about using steps.with, or steps.with.args? (docs) - it will clearly indicate which env variables are actually used and should be treated as arguments for the particular step
Panquesito7
left a comment
There was a problem hiding this comment.
I think you should also disable Travis CI, as GitHub Actions works much faster than Travis CI.
| on: | ||
| push: | ||
| branches: | ||
| - master |
There was a problem hiding this comment.
| on: | |
| push: | |
| branches: | |
| - master | |
| on: [push] |
| @@ -0,0 +1,27 @@ | |||
| #!/bin/bash -x | |||
| # | |||
| # Copyright (C) 2020 Intel Corporation | |||
There was a problem hiding this comment.
| # Copyright (C) 2020 Intel Corporation | |
| # Copyright (C) 2021 Intel Corporation |
| @@ -0,0 +1,21 @@ | |||
| #!/bin/bash | |||
| # | |||
| # Copyright (C) 2020 Intel Corporation | |||
There was a problem hiding this comment.
| # Copyright (C) 2020 Intel Corporation | |
| # Copyright (C) 2021 Intel Corporation |
e406d7a to
10101ca
Compare
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
10101ca to
adb896e
Compare
5404e02 to
be4b773
Compare
|
closing as deprecated |
Signed-off-by: Artur Harasimiuk artur.harasimiuk@intel.com