forked from imatix/gsl
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from bluca/ci
Problem: want to use OBS workflow and GH Actions
- Loading branch information
Showing
5 changed files
with
89 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: CI | ||
on: | ||
push: | ||
pull_request: | ||
|
||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
BUILD_TYPE: default | ||
PACKAGES: libpcre3-dev | ||
env: | ||
# Set CI_TIME: true to enable build-step profiling | ||
# Set CI_TRACE: true to enable shell script tracing | ||
# Set CI_CONFIG_QUIET: true to enable "configure --quiet" (only report stderr) | ||
# Set CI_REQUIRE_GOOD_GITIGNORE: false to NOT fail if "git status -s" is not clean | ||
# Set CI_REQUIRE_GOOD_CLANG_FORMAT: true to fail if "clang-format" check is not clean | ||
CI_TIME: false | ||
CI_TRACE: false | ||
CI_CONFIG_QUIET: true | ||
CI_REQUIRE_GOOD_GITIGNORE: false | ||
platform: ${{ matrix.platform }} | ||
configuration: ${{ matrix.configuration }} | ||
BUILD_TYPE: ${{ matrix.BUILD_TYPE }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
path: gsl | ||
- name: build | ||
shell: bash | ||
working-directory: gsl | ||
run: ./ci_build.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
pull_request: | ||
steps: | ||
- branch_package: | ||
source_project: network:messaging:zeromq:git-draft | ||
source_package: generator-scripting-language | ||
target_project: network:messaging:zeromq:ci | ||
filters: | ||
event: pull_request | ||
merge: | ||
steps: | ||
- trigger_services: | ||
project: network:messaging:zeromq:git-stable | ||
package: generator-scripting-language | ||
filters: | ||
event: push | ||
branches: | ||
only: | ||
- master | ||
release: | ||
steps: | ||
- trigger_services: | ||
project: network:messaging:zeromq:release-stable | ||
package: generator-scripting-language | ||
- trigger_services: | ||
project: network:messaging:zeromq:release-draft | ||
package: generator-scripting-language | ||
filters: | ||
event: tag_push |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters