2020-03-05 14:00:35 +08:00
|
|
|
# Licensed 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.
|
|
|
|
#
|
2020-04-15 13:15:04 +08:00
|
|
|
name: Build
|
2020-03-05 14:00:35 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2020-04-23 15:40:21 +08:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- 'releases/*'
|
|
|
|
tags:
|
2020-03-05 14:00:35 +08:00
|
|
|
|
|
|
|
jobs:
|
2020-04-23 15:40:21 +08:00
|
|
|
Fetch-Source:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Determine Target Branches
|
|
|
|
id: gittargets
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
TESTING_REF="master" # Always use master for testing
|
|
|
|
OS_REF=""
|
|
|
|
APPS_REF=""
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
REF=$GITHUB_REF
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
# If a base ref is set this is a PR and we will want to use
|
|
|
|
# the base ref instead of the ref that triggered the event
|
|
|
|
if [ ${GITHUB_BASE_REF} ]; then
|
|
|
|
REF=refs/heads/$GITHUB_BASE_REF
|
|
|
|
fi
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
echo "Working with ref: $REF"
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
# We modify for all tags and release branches
|
|
|
|
if [[ $REF =~ refs/heads/releases/*|refs/tags/* ]]; then
|
|
|
|
if [[ $REF =~ refs/heads/* ]]
|
|
|
|
then
|
|
|
|
REF_NAME=${REF##refs/heads/}
|
|
|
|
echo "Working with a branch: $REF_NAME"
|
|
|
|
else
|
|
|
|
REF_NAME=${REF##refs/tags/}
|
|
|
|
echo "Working with a tag: $REF_NAME"
|
|
|
|
fi
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
# Determine the repo and leave that unset to use the normal checkout behavior
|
|
|
|
# of using the merge commit instead of HEAD
|
|
|
|
case $GITHUB_REPOSITORY in
|
|
|
|
"apache/incubator-nuttx")
|
|
|
|
# OS
|
|
|
|
echo "Triggered by change in OS"
|
|
|
|
APPS_REF=$REF_NAME
|
|
|
|
;;
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
"apache/incubator-nuttx-apps" )
|
|
|
|
# APPS
|
|
|
|
OS_REF=$REF_NAME
|
|
|
|
echo "Triggered by change in APPS"
|
|
|
|
;;
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
*)
|
|
|
|
echo "Trigger by change on $GITHUB_REPOSITORY. This is unexpected."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
echo ::set-output name=os_ref::$OS_REF
|
|
|
|
echo ::set-output name=apps_ref::$APPS_REF
|
|
|
|
echo ::set-output name=testing_ref::$TESTING_REF
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Checkout nuttx repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: apache/incubator-nuttx
|
|
|
|
ref: ${{ steps.gittargets.outputs.os_ref }}
|
|
|
|
path: sources/nuttx
|
|
|
|
fetch-depth: 1
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Checkout apps repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: apache/incubator-nuttx-apps
|
|
|
|
ref: ${{ steps.gittargets.outputs.apps_ref }}
|
|
|
|
path: sources/apps
|
|
|
|
fetch-depth: 1
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Checkout testing repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: apache/incubator-nuttx-testing
|
|
|
|
ref: ${{ steps.gittargets.outputs.testing_ref }}
|
|
|
|
path: sources/testing
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- name: Create Source Bundle
|
|
|
|
run: tar -czf sources.tar.gz sources
|
|
|
|
- name: Archive Source Bundle
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: source-bundle
|
|
|
|
path: sources.tar.gz
|
|
|
|
|
|
|
|
- name: Cache Source
|
|
|
|
id: cache-source
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: sources
|
|
|
|
key: build-sources-${{ github.run_id }}
|
|
|
|
|
2020-04-15 13:15:04 +08:00
|
|
|
Linux:
|
2020-04-23 15:40:21 +08:00
|
|
|
needs: Fetch-Source
|
|
|
|
runs-on: ubuntu-latest
|
2020-03-15 14:26:48 +08:00
|
|
|
env:
|
|
|
|
DOCKER_BUILDKIT: 1
|
2020-03-05 14:00:35 +08:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-05-02 11:59:52 +08:00
|
|
|
boards: [arm-01, arm-02, arm-03, arm-04, arm-05, arm-06, arm-07, arm-08, arm-09, arm-10, arm-11, arm-12, arm-13, mips-riscv-x86-xtensa, sim]
|
2020-03-05 14:00:35 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
steps:
|
|
|
|
- name: Fetch Cached Source
|
|
|
|
id: cache-source
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: sources-cache
|
|
|
|
key: build-sources-${{ github.run_id }}
|
|
|
|
- name: Prevent Updating Source Cache
|
|
|
|
if: steps.cache-source.outputs.cache-hit == 'true'
|
|
|
|
run: mv sources-cache sources
|
|
|
|
- name: Download Source Artifact
|
|
|
|
if: steps.cache-source.outputs.cache-hit != 'true'
|
|
|
|
uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: source-bundle
|
|
|
|
path: ./
|
|
|
|
- name: Extract Source Artifact
|
|
|
|
if: steps.cache-source.outputs.cache-hit != 'true'
|
|
|
|
run: tar -xf sources.tar.gz
|
|
|
|
|
|
|
|
- name: Docker Login
|
|
|
|
uses: azure/docker-login@v1
|
|
|
|
with:
|
|
|
|
login-server: docker.pkg.github.com
|
|
|
|
username: ${GITHUB_ACTOR}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Docker Pull
|
|
|
|
uses: nick-invision/retry@v1
|
|
|
|
with:
|
|
|
|
timeout_minutes: 10
|
|
|
|
max_attempts: 3
|
|
|
|
retry_wait_seconds: 10
|
|
|
|
command: docker pull docker.pkg.github.com/apache/incubator-nuttx-testing/nuttx-ci-linux
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-05-05 13:27:57 +08:00
|
|
|
- name: Export NuttX Repo SHA
|
|
|
|
run: echo "::set-env name=nuttx_sha::`git -C sources/nuttx rev-parse HEAD`"
|
|
|
|
- name: Refresh Git Credentials
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: apache/incubator-nuttx
|
|
|
|
ref: ${{ env.nuttx_sha }}
|
|
|
|
path: sources/nuttx
|
|
|
|
fetch-depth: 1
|
|
|
|
- name: Get Tags for NuttX Repo
|
|
|
|
run: git -C sources/nuttx fetch --tags
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Run builds
|
|
|
|
uses: ./sources/testing/.github/actions/ci-container
|
|
|
|
env:
|
|
|
|
BLOBDIR: /tools/blobs
|
|
|
|
with:
|
|
|
|
run: |
|
|
|
|
cd sources/testing
|
2020-04-22 01:31:45 +08:00
|
|
|
./cibuild.sh -x testlist/${{matrix.boards}}.dat
|
2020-04-09 13:33:16 +08:00
|
|
|
|
2020-04-15 13:15:04 +08:00
|
|
|
macOS:
|
2020-04-09 13:33:16 +08:00
|
|
|
runs-on: macos-10.15
|
2020-04-23 15:40:21 +08:00
|
|
|
needs: Fetch-Source
|
2020-04-09 13:33:16 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-04-19 21:34:53 +08:00
|
|
|
boards: [arm-12, mips-riscv-x86-xtensa, sim]
|
2020-04-09 13:33:16 +08:00
|
|
|
steps:
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Fetch Cached Source
|
|
|
|
id: cache-source
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: sources-cache
|
|
|
|
key: build-sources-${{ github.run_id }}
|
|
|
|
- name: Prevent Updating Source Cache
|
|
|
|
if: steps.cache-source.outputs.cache-hit == 'true'
|
|
|
|
run: mv sources-cache sources
|
|
|
|
- name: Download Source Artifact
|
|
|
|
if: steps.cache-source.outputs.cache-hit != 'true'
|
|
|
|
uses: actions/download-artifact@v1
|
|
|
|
with:
|
|
|
|
name: source-bundle
|
|
|
|
path: ./
|
|
|
|
- name: Extract Source Artifact
|
|
|
|
if: steps.cache-source.outputs.cache-hit != 'true'
|
|
|
|
run: tar -xf sources.tar.gz
|
|
|
|
|
|
|
|
- name: Restore Tools Cache
|
|
|
|
id: cache-tools
|
|
|
|
uses: actions/cache@v1
|
|
|
|
env:
|
|
|
|
cache-name: ${{ runner.os }}-cache-tools
|
|
|
|
with:
|
|
|
|
path: prebuilt
|
|
|
|
key: ${{ runner.os }}-tools-${{ hashFiles('./sources/testing/cibuild.sh') }}
|
|
|
|
|
2020-05-05 13:27:57 +08:00
|
|
|
- name: Export NuttX Repo SHA
|
|
|
|
run: echo "::set-env name=nuttx_sha::`git -C sources/nuttx rev-parse HEAD`"
|
|
|
|
- name: Refresh Git Credentials
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
repository: apache/incubator-nuttx
|
|
|
|
ref: ${{ env.nuttx_sha }}
|
|
|
|
path: sources/nuttx
|
|
|
|
fetch-depth: 1
|
|
|
|
- name: Get Tags for NuttX Repo
|
|
|
|
run: git -C sources/nuttx fetch --tags
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Run Builds
|
|
|
|
run: |
|
|
|
|
cd sources/testing
|
2020-04-22 01:31:45 +08:00
|
|
|
./cibuild.sh -i -x testlist/${{matrix.boards}}.dat
|