-
Notifications
You must be signed in to change notification settings - Fork 43
133 lines (118 loc) · 4.93 KB
/
ci.yaml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
name: Continuous Integration
on:
push:
branches: [ master ]
tags: [ '*' ]
pull_request:
branches: [ master ]
types: [ opened, synchronize, reopened ]
schedule:
- cron: '30 1 * * 1,3,5'
permissions: read-all
jobs:
ci:
runs-on: ubuntu-22.04
env:
PUSH_NIGHTLY: ${{ (github.event_name == 'push' || github.event_name == 'schedule') && github.ref == 'refs/heads/master' }}
PUSH_RELEASE: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
steps:
# Checkout just this repo and run scanCode before we do anything else
- name: Checkout runtime repo
uses: actions/checkout@v4
with:
path: runtime
- name: Scan Code
uses: apache/openwhisk-utilities/scancode@master
# Install core OpenWhisk artifacts needed to build/test anything else
- name: Checkout OpenWhisk core repo
uses: actions/checkout@v4
with:
repository: apache/openwhisk
path: core
- name: Checkout OpenWhisk Utilities repo
uses: actions/checkout@v4
with:
repository: apache/openwhisk-utilities
path: utilities
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
- name: Setup OpenWhisk
working-directory: core
run: |
./tools/travis/setup.sh
# run scancode using the ASF Release configuration
- name: Setup
working-directory: utilities
run: |
scancode/scanCode.py --config scancode/ASF-Release.cfg ../runtime
- name: Compile and Install Core OpenWhisk
working-directory: core
run: |
./gradlew install tests:buildArtifacts
export OPENWHISK_HOME=$(pwd)
echo "openwhisk.home=$OPENWHISK_HOME" > whisk.properties
echo "vcap.services.file=" >> whisk.properties
# Build this repository
- name: Build Runtime && SDK
working-directory: runtime
run: |
./gradlew distDocker
./sdk/docker/build_tgz.sh blackbox.tar.gz
# Test this repository
- name: Test Runtime
working-directory: runtime
run: |
export OPENWHISK_HOME="$(pwd)/../core"
./gradlew :tests:checkScalafmtAll
./gradlew :tests:test
# Conditionally publish runtime images to DockerHub
# Important: naming convention for release tags is runtime@version
- name: Docker Login
if: ${{ env.PUSH_NIGHTLY == 'true' || env.PUSH_RELEASE == 'true' }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER_OPENWHISK }}
password: ${{ secrets.DOCKERHUB_TOKEN_OPENWHISK }}
- name: Push Nightly Images
if: ${{ env.PUSH_NIGHTLY == 'true' }}
working-directory: runtime
run: |
SHORT_COMMIT=$(git rev-parse --short "$GITHUB_SHA")
./gradlew :core:actionProxy:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=nightly
./gradlew :core:actionProxy:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=$SHORT_COMMIT
./gradlew :sdk:docker:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=nightly
./gradlew :sdk:docker:distDocker -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=$SHORT_COMMIT
- name: Push Release Images
if: ${{ env.PUSH_RELEASE == 'true' }}
working-directory: runtime
run: |
IMAGE_TAG=${GITHUB_REF_NAME##*@}
SHORT_COMMIT=$(git rev-parse --short "$GITHUB_SHA")
GRADLE_BUILD=":core:actionProxy:distDocker"
if [ ${IMAGE_NAME} == "dockerskeleton" ]; then
GRADLE_BUILD=":core:actionProxy:distDocker"
elif [ ${IMAGE_NAME} == "example" ]; then
GRADLE_BUILD=":sdk:docker:distDocker"
fi
./gradlew ${GRADLE_BUILD} -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=$IMAGE_TAG
./gradlew ${GRADLE_BUILD} -PdockerRegistry=docker.io -PdockerImagePrefix=openwhisk -PdockerImageTag=$SHORT_COMMIT