Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 46 additions & 17 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,59 @@
format_version: '13'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: other

app:
status_report_name: "test status <target_id> "

include:
- path: bitrise.pipelines.yml

workflows:
ios:
status_report_group: 'help!'
status_report_name: "<project_title>: <target_id> - <event_type>"
pipelines:
pipeline:
triggers:
pull_request:
- changed_files: '*ios*'
- target_branch: "*"
push:
- branch: "*"
stages:
- stage1: {}
stages:
stage1:
workflows:
- env: {}
workflows:
primary:
steps:
- deploy-to-bitrise-io@2: {}
android:
status_report_group: 'help!'
- script@1.2.1: {}
triggers:
pull_request:
- changed_files: '*android*'
pull_request: []
security:
steps:
- deploy-to-bitrise-io@2: {}
- script@1.2.1: {}
triggers:
pull_request: []
env:
steps:
- script@1.2.1:
inputs:
- content: |-
#!/usr/bin/env bash

echo "BITRISE_GIT_PULL_REQUEST_LABELS: $BITRISE_GIT_PULL_REQUEST_LABELS"
echo "BITRISE_GIT_PULL_REQUEST_COMMENT_ID: $BITRISE_GIT_PULL_REQUEST_COMMENT_ID"
echo "BITRISE_GIT_PULL_REQUEST_COMMENT: $BITRISE_GIT_PULL_REQUEST_COMMENT"
echo ""
echo "BITRISE_GIT_CHANGED_FILES: $BITRISE_GIT_CHANGED_FILES"
echo "BITRISE_GIT_COMMIT_MESSAGES: $BITRISE_GIT_COMMIT_MESSAGES"
echo "BITRISE_GIT_MESSAGE: $BITRISE_GIT_MESSAGE"
echo ""
echo "BITRISE_TRIGGER_BY: $BITRISE_TRIGGER_BY"
echo "BITRISE_TRIGGER_METHOD: $BITRISE_TRIGGER_METHOD"
triggers:
pull_request:
- label: "*"
comment: "*"
changed_files: "*"
target_branch: "*"
- comment: "*"
push:
- branch: "*"
meta:
bitrise.io:
stack: linux-docker-android-20.04
machine_type_id: standard

2 changes: 1 addition & 1 deletion compile.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
go build -o shared_module/sum.so -buildmode=c-shared go_shared/sum.go
go build -o shared_module/sum.so -buildmode=c-shared go_shared/sum.gogt