Skip to content

Commit

Permalink
Test entrypoint nasa#8
Browse files Browse the repository at this point in the history
  • Loading branch information
r9-pena committed Aug 5, 2021
1 parent d979ab4 commit 1a2b69b
Showing 1 changed file with 59 additions and 62 deletions.
121 changes: 59 additions & 62 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,27 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains 4 jobs. One for every CI test."
# 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
container:
image: nasafprime/fprime-base: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-framework-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
run: ./ci/tests/Framework.bash
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v2
if: always()
with:
name: ci-framework-logs
path: ci-logs.tar.gz
retention-days: 5

Ref:
# The type of runner that the job will run on
Expand All @@ -59,47 +58,45 @@ jobs:
retention-days: 5

# RPI:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
image: nasafprime/fprime-base: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-rpi-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
run: ./ci/tests/RPI.bash
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v2
if: always()
with:
name: ci-rpi-logs
path: ci-logs.tar.gz
retention-days: 5

# Integration:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest
Integration:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
image: nasafprime/fprime-base: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: '30-ints'
# # Archive the outputs
# - name: 'Archive Logs'
# uses: actions/upload-artifact@v2
# if: always()
# with:
# name: ci-int-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
run: ./ci/tests/30-ints.bash
# Archive the outputs
- name: 'Archive Logs'
uses: actions/upload-artifact@v2
if: always()
with:
name: ci-int-logs
path: ci-logs.tar.gz
retention-days: 5

0 comments on commit 1a2b69b

Please sign in to comment.