Skip to content

Commit

Permalink
Test nasa#37
Browse files Browse the repository at this point in the history
  • Loading branch information
r9-pena committed Jul 23, 2021
1 parent 6e0db34 commit 47b5f8e
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 65 deletions.
126 changes: 63 additions & 63 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,74 +13,74 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
Framework:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Framework:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs the CI action internal to the repository
- name: F prime CI step
uses: ./.github/actions/
id: github-ci-action
with:
test: Framework
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v2
if: always()
with:
name: ci-logs
path: ci-logs.tar.gz
retention-days: 5
# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v2
# # Runs the CI action internal to the repository
# - name: F prime CI step
# uses: ./.github/actions/
# id: github-ci-action
# with:
# test: Framework
# # Archive the outputs
# - name: 'Archive Logs'
# uses: actions/upload-artifact@v2
# if: always()
# with:
# name: ci-logs
# path: ci-logs.tar.gz
# retention-days: 5

Ref:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Ref:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs the CI action internal to the repository
- name: F prime CI step
uses: ./.github/actions/
id: github-ci-action
with:
test: 'Ref'
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v2
if: always()
with:
name: ci-logs
path: ci-logs.tar.gz
retention-days: 5
# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v2
# # Runs the CI action internal to the repository
# - name: F prime CI step
# uses: ./.github/actions/
# id: github-ci-action
# with:
# test: 'Ref'
# # Archive the outputs
# - name: 'Archive Logs'
# uses: actions/upload-artifact@v2
# if: always()
# with:
# name: ci-logs
# path: ci-logs.tar.gz
# retention-days: 5

RPI:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# RPI:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs the CI action internal to the repository
- name: F prime CI step
uses: ./.github/actions/
id: github-ci-action
with:
test: 'RPI'
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v2
if: always()
with:
name: ci-logs
path: ci-logs.tar.gz
retention-days: 5
# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - uses: actions/checkout@v2
# # Runs the CI action internal to the repository
# - name: F prime CI step
# uses: ./.github/actions/
# id: github-ci-action
# with:
# test: 'RPI'
# # Archive the outputs
# - name: 'Archive Logs'
# uses: actions/upload-artifact@v2
# if: always()
# with:
# name: ci-logs
# path: ci-logs.tar.gz
# retention-days: 5

Integration:
# The type of runner that the job will run on
Expand Down
4 changes: 2 additions & 2 deletions ci/tests/fputil.bash
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ function integration_test {

cd "${WORKDIR}"
fprime-util "generate" ${PLATFORM} ${CMAKE_EXTRA_SETTINGS} || fail_and_stop "Failed to generate before ${WORKDIR//\//_} building integration test"
cd "${WORKDIR}/"
fprime-util "build" --jobs "${JOBS}" ${PLATFORM} || fail_and_stop "Failed to build before integration test"
# cd "${WORKDIR}/"
# fprime-util "build" --jobs "${JOBS}" ${PLATFORM} || fail_and_stop "Failed to build before integration test"

(
mkdir -p "${LOG_DIR}/gds-logs"
Expand Down

0 comments on commit 47b5f8e

Please sign in to comment.