This is an automated email from the ASF dual-hosted git repository. dgrove pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-nodejs.git
commit 6b0a03f32ba1e37f4d58465679eebc95deda58ca Author: David Grove <[email protected]> AuthorDate: Mon Jan 16 20:36:14 2023 -0500 Define workflow for build/test phases --- .github/workflows/ci.yaml | 59 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..91b7b48 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,59 @@ +# 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 ] + pull_request: + branches: [ master ] + types: [ opened, synchronize, reopened ] +jobs: + ci: + runs-on: ubuntu-22.04 + steps: + - name: Checkout runtime repo + uses: actions/checkout@v3 + with: + path: runtime + - name: Scan Code + uses: apache/openwhisk-utilities/scancode@master + - name: Checkout OpenWhisk core repo + uses: actions/checkout@v3 + with: + repository: apache/openwhisk + path: core + - name: Setup Java + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '11' + - name: Compile and Install Core OpenWhisk + working-directory: core + run: | + ./gradlew :tests:compileTestScala + ./gradlew install + - name: Build Runtime + working-directory: runtime + run: | + ./gradlew distDocker + - name: Test Runtime + working-directory: runtime + run: | + ./gradlew :tests:checkScalafmtAll + ./gradlew :tests:test
