NuttX graduated the Incubator; update repository links

This commit is contained in:
Nathan Hartman 2022-11-22 14:00:54 -05:00 committed by Brennan Ashton
parent e517dfd672
commit e4376a0e60
2 changed files with 7 additions and 7 deletions

View File

@ -62,13 +62,13 @@ jobs:
# Determine the repo and leave that unset to use the normal checkout behavior # Determine the repo and leave that unset to use the normal checkout behavior
# of using the merge commit instead of HEAD # of using the merge commit instead of HEAD
case $GITHUB_REPOSITORY in case $GITHUB_REPOSITORY in
"apache/incubator-nuttx") "apache/nuttx")
# OS # OS
echo "Triggered by change in OS" echo "Triggered by change in OS"
APPS_REF=$REF_NAME APPS_REF=$REF_NAME
;; ;;
"apache/incubator-nuttx-apps" ) "apache/nuttx-apps" )
# APPS # APPS
OS_REF=$REF_NAME OS_REF=$REF_NAME
echo "Triggered by change in APPS" echo "Triggered by change in APPS"
@ -86,7 +86,7 @@ jobs:
- name: Checkout nuttx repo - name: Checkout nuttx repo
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
repository: apache/incubator-nuttx repository: apache/nuttx
ref: ${{ steps.gittargets.outputs.os_ref }} ref: ${{ steps.gittargets.outputs.os_ref }}
path: sources/nuttx path: sources/nuttx
fetch-depth: 1 fetch-depth: 1
@ -96,7 +96,7 @@ jobs:
- name: Checkout apps repo - name: Checkout apps repo
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
repository: apache/incubator-nuttx-apps repository: apache/nuttx-apps
ref: ${{ steps.gittargets.outputs.apps_ref }} ref: ${{ steps.gittargets.outputs.apps_ref }}
path: sources/apps path: sources/apps
fetch-depth: 1 fetch-depth: 1
@ -135,7 +135,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker Pull - name: Docker Pull
run: docker pull ghcr.io/apache/incubator-nuttx/apache-nuttx-ci-linux run: docker pull ghcr.io/apache/nuttx/apache-nuttx-ci-linux
- name: Export NuttX Repo SHA - name: Export NuttX Repo SHA
run: echo "nuttx_sha=`git -C sources/nuttx rev-parse HEAD`" >> $GITHUB_ENV run: echo "nuttx_sha=`git -C sources/nuttx rev-parse HEAD`" >> $GITHUB_ENV
- name: Run builds - name: Run builds

View File

@ -30,14 +30,14 @@ jobs:
- name: Checkout nuttx repo - name: Checkout nuttx repo
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
repository: apache/incubator-nuttx repository: apache/nuttx
path: nuttx path: nuttx
fetch-depth: 0 fetch-depth: 0
- name: Checkout apps repo - name: Checkout apps repo
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
repository: apache/incubator-nuttx-apps repository: apache/nuttx-apps
path: apps path: apps
fetch-depth: 0 fetch-depth: 0