-
Notifications
You must be signed in to change notification settings - Fork 20
56 lines (47 loc) · 1.71 KB
/
daily-build.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Daily build
on:
workflow_dispatch:
repository_dispatch:
types:
check_connector_for_breaking_changes
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 11
- name: Set environment variable
if: github.event.action == 'check_connector_for_breaking_changes'
run: |
echo "BUILD_USING_DOCKER=-PbuildUsingDocker=nightly" >> $GITHUB_ENV
echo "GRADLE_SKIP_TASKS=-x :oracledb-compiler-plugin-tests:test -x :oracledb-examples:build" >> $GITHUB_ENV
# Build the project with Gradle
- name: Build with Gradle
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew clean build $GRADLE_SKIP_TASKS $BUILD_USING_DOCKER
# Send notification when build fails
- name: Notify failure
if: ${{ failure() }}
run: |
eventType="notify-build-failure"
if [[ "${{ github.event.action }}" == "check_connector_for_breaking_changes" ]]; then
eventType="notify-ballerinax-connector-build-failure"
fi
curl -X POST \
'https://api.github.com/repos/ballerina-platform/ballerina-release/dispatches' \
-H 'Accept: application/vnd.github.v3+json' \
-H 'Authorization: Bearer ${{ secrets.BALLERINA_BOT_TOKEN }}' \
--data "{
\"event_type\": \"$eventType\",
\"client_payload\": {
\"repoName\": \"module-ballerinax-oracledb\",
\"workflow\": \"Daily build\"
}
}"