diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index db3dca745f..cb22310bff 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -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 diff --git a/ci/tests/fputil.bash b/ci/tests/fputil.bash index 3efb5fe24e..570a39ea2b 100755 --- a/ci/tests/fputil.bash +++ b/ci/tests/fputil.bash @@ -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"