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-07-21 06:18:26 +08:00
|
|
|
paths-ignore:
|
2020-08-15 04:01:22 +08:00
|
|
|
- 'Documentation/**'
|
2023-08-22 21:14:59 +08:00
|
|
|
- 'tools/ci/docker/linux/**'
|
2020-04-23 15:40:21 +08:00
|
|
|
push:
|
2020-07-21 06:18:26 +08:00
|
|
|
paths-ignore:
|
2020-08-15 04:01:22 +08:00
|
|
|
- 'Documentation/**'
|
2020-04-23 15:40:21 +08:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- 'releases/*'
|
|
|
|
tags:
|
2020-03-05 14:00:35 +08:00
|
|
|
|
2022-08-29 18:01:51 +08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-12-17 21:48:15 +08:00
|
|
|
concurrency:
|
|
|
|
group: build-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
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: |
|
|
|
|
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
|
2022-11-23 02:59:48 +08:00
|
|
|
"apache/nuttx")
|
2020-04-23 15:40:21 +08:00
|
|
|
# OS
|
|
|
|
echo "Triggered by change in OS"
|
|
|
|
APPS_REF=$REF_NAME
|
|
|
|
;;
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2022-11-23 02:59:48 +08:00
|
|
|
"apache/nuttx-apps" )
|
2020-04-23 15:40:21 +08:00
|
|
|
# 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
|
|
|
|
2023-05-16 13:17:26 +08:00
|
|
|
echo "name=$OS_REF" >> $GITHUB_OUTPUT
|
|
|
|
echo "app_ref=$APPS_REF" >> $GITHUB_OUTPUT
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Checkout nuttx repo
|
2023-09-11 10:40:23 +08:00
|
|
|
uses: actions/checkout@v4
|
2020-04-23 15:40:21 +08:00
|
|
|
with:
|
2022-11-23 02:59:48 +08:00
|
|
|
repository: apache/nuttx
|
2020-04-23 15:40:21 +08:00
|
|
|
ref: ${{ steps.gittargets.outputs.os_ref }}
|
|
|
|
path: sources/nuttx
|
|
|
|
fetch-depth: 1
|
2020-09-03 04:11:56 +08:00
|
|
|
- name: Checkout nuttx repo tags
|
|
|
|
run: git -C sources/nuttx fetch --tags
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Checkout apps repo
|
2023-09-11 10:40:23 +08:00
|
|
|
uses: actions/checkout@v4
|
2020-04-23 15:40:21 +08:00
|
|
|
with:
|
2022-11-23 02:59:48 +08:00
|
|
|
repository: apache/nuttx-apps
|
2020-04-23 15:40:21 +08:00
|
|
|
ref: ${{ steps.gittargets.outputs.apps_ref }}
|
|
|
|
path: sources/apps
|
|
|
|
fetch-depth: 1
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-09-12 01:26:27 +08:00
|
|
|
- name: Tar sources
|
|
|
|
run: tar zcf sources.tar.gz sources
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Archive Source Bundle
|
2022-06-19 11:43:38 +08:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-04-23 15:40:21 +08:00
|
|
|
with:
|
|
|
|
name: source-bundle
|
|
|
|
path: sources.tar.gz
|
|
|
|
|
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:
|
2022-09-14 17:59:17 +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, other, risc-v, sim-01, sim-02, xtensa, codechecker]
|
2020-03-05 14:00:35 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
steps:
|
|
|
|
- name: Download Source Artifact
|
2022-06-19 11:43:33 +08:00
|
|
|
uses: actions/download-artifact@v3
|
2020-04-23 15:40:21 +08:00
|
|
|
with:
|
|
|
|
name: source-bundle
|
2020-09-12 01:26:27 +08:00
|
|
|
path: .
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2020-09-12 01:26:27 +08:00
|
|
|
- name: Extract sources
|
|
|
|
run: tar zxf sources.tar.gz
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Docker Login
|
2023-09-18 10:10:25 +08:00
|
|
|
uses: docker/login-action@v3
|
2020-04-23 15:40:21 +08:00
|
|
|
with:
|
2022-02-25 04:17:25 +08:00
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
2020-04-23 15:40:21 +08:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2020-05-02 11:59:52 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Docker Pull
|
2022-11-23 02:59:48 +08:00
|
|
|
run: docker pull ghcr.io/apache/nuttx/apache-nuttx-ci-linux
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2020-05-05 13:27:57 +08:00
|
|
|
- name: Export NuttX Repo SHA
|
2020-12-15 09:01:37 +08:00
|
|
|
run: echo "nuttx_sha=`git -C sources/nuttx rev-parse HEAD`" >> $GITHUB_ENV
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Run builds
|
2021-04-05 10:55:34 +08:00
|
|
|
uses: ./sources/nuttx/.github/actions/ci-container
|
2020-04-23 15:40:21 +08:00
|
|
|
env:
|
|
|
|
BLOBDIR: /tools/blobs
|
|
|
|
with:
|
|
|
|
run: |
|
2020-06-01 05:19:21 +08:00
|
|
|
echo "::add-matcher::sources/nuttx/.github/gcc.json"
|
2021-04-05 10:55:34 +08:00
|
|
|
export ARTIFACTDIR=`pwd`/buildartifacts
|
2022-06-23 05:33:15 +08:00
|
|
|
git config --global --add safe.directory /github/workspace/sources/nuttx
|
2022-06-25 09:28:22 +08:00
|
|
|
git config --global --add safe.directory /github/workspace/sources/apps
|
2021-04-05 10:55:34 +08:00
|
|
|
cd sources/nuttx/tools/ci
|
2022-09-14 17:59:17 +08:00
|
|
|
if [ "X${{matrix.boards}}" = "Xcodechecker" ]; then
|
2022-12-10 18:29:47 +08:00
|
|
|
./cibuild.sh -c -A -R --codechecker testlist/${{matrix.boards}}.dat
|
2022-09-14 17:59:17 +08:00
|
|
|
else
|
2022-12-10 18:29:47 +08:00
|
|
|
./cibuild.sh -c -A -R testlist/${{matrix.boards}}.dat
|
2022-09-14 17:59:17 +08:00
|
|
|
fi
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2022-06-19 11:43:38 +08:00
|
|
|
- uses: actions/upload-artifact@v3
|
2022-09-14 17:59:17 +08:00
|
|
|
if: ${{ always() }}
|
2020-10-26 12:18:43 +08:00
|
|
|
with:
|
|
|
|
name: linux-builds
|
|
|
|
path: buildartifacts/
|
2020-12-23 15:06:12 +08:00
|
|
|
continue-on-error: true
|
2020-04-09 13:33:16 +08:00
|
|
|
|
2020-04-15 13:15:04 +08:00
|
|
|
macOS:
|
2022-06-17 08:32:28 +08:00
|
|
|
permissions:
|
|
|
|
contents: none
|
2023-07-03 04:30:58 +08:00
|
|
|
runs-on: macos-13
|
2020-04-23 15:40:21 +08:00
|
|
|
needs: Fetch-Source
|
2020-04-09 13:33:16 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-05-17 02:24:59 +08:00
|
|
|
boards: [macos, sim-01, sim-02]
|
2020-04-09 13:33:16 +08:00
|
|
|
steps:
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Download Source Artifact
|
2022-06-19 11:43:33 +08:00
|
|
|
uses: actions/download-artifact@v3
|
2020-04-23 15:40:21 +08:00
|
|
|
with:
|
|
|
|
name: source-bundle
|
2020-09-12 01:26:27 +08:00
|
|
|
path: .
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2020-09-12 01:26:27 +08:00
|
|
|
- name: Extract sources
|
|
|
|
run: tar zxf sources.tar.gz
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Restore Tools Cache
|
|
|
|
id: cache-tools
|
2022-06-20 10:32:53 +08:00
|
|
|
uses: actions/cache@v3
|
2020-04-23 15:40:21 +08:00
|
|
|
env:
|
|
|
|
cache-name: ${{ runner.os }}-cache-tools
|
|
|
|
with:
|
2022-12-10 18:05:41 +08:00
|
|
|
path: ./sources/tools
|
2021-04-05 10:55:34 +08:00
|
|
|
key: ${{ runner.os }}-tools-${{ hashFiles('./sources/nuttx/tools/ci/cibuild.sh') }}
|
2020-04-23 15:40:21 +08:00
|
|
|
|
2020-05-05 13:27:57 +08:00
|
|
|
- name: Export NuttX Repo SHA
|
2020-12-15 09:01:37 +08:00
|
|
|
run: echo "nuttx_sha=`git -C sources/nuttx rev-parse HEAD`" >> $GITHUB_ENV
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2022-11-21 12:46:51 +08:00
|
|
|
# Released version of Cython has issues with Python 11. Set runner to use Python 3.10
|
|
|
|
# https://github.com/cython/cython/issues/4500
|
2023-12-11 10:18:11 +08:00
|
|
|
- uses: actions/setup-python@v5
|
2022-11-21 12:46:51 +08:00
|
|
|
with:
|
2022-12-12 05:54:21 +08:00
|
|
|
python-version: '3.10'
|
2020-04-23 15:40:21 +08:00
|
|
|
- name: Run Builds
|
|
|
|
run: |
|
2020-06-01 05:19:21 +08:00
|
|
|
echo "::add-matcher::sources/nuttx/.github/gcc.json"
|
2021-04-05 10:55:34 +08:00
|
|
|
export ARTIFACTDIR=`pwd`/buildartifacts
|
|
|
|
cd sources/nuttx/tools/ci
|
2022-12-10 18:29:47 +08:00
|
|
|
./cibuild.sh -i -c -A -R testlist/${{matrix.boards}}.dat
|
2022-02-25 04:17:25 +08:00
|
|
|
|
2022-06-19 11:43:38 +08:00
|
|
|
- uses: actions/upload-artifact@v3
|
2020-10-26 12:18:43 +08:00
|
|
|
with:
|
|
|
|
name: macos-builds
|
|
|
|
path: buildartifacts/
|
2020-12-23 15:06:12 +08:00
|
|
|
continue-on-error: true
|