Skip to content

GitHub Actions - Ubuntu CPU #4

GitHub Actions - Ubuntu CPU

GitHub Actions - Ubuntu CPU #4

Workflow file for this run

name: build-ubuntu

Check failure on line 1 in .github/workflows/build-ubuntu.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-ubuntu.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: ci-test
on:
pull_request:
push:
workflow_dispatch:
jobs:
ci-test:
strategy:
matrix:
os: [ubuntu-22.04]
runs-on: ${{matrix.os}}
steps:
- name: Git checkout
uses: actions/checkout@v1
- name: Makedir
working-directory: ${{runner.workspace}}/asgard
run: cmake -E make_directory build
- name: Configure
working-directory: ${{runner.workspace}}/asgard/build
run: cmake -DCMAKE_BUILD_TYPE=${{matrix.node}} -DASGARD_RECOMMENDED_DEFAULTS=ON -DASGARD_PRECISIONS=double ../
- name: Build
working-directory: ${{runner.workspace}}/asgard/build
run: make -j VERBOSE=1
- name: Test
working-directory: ${{runner.workspace}}/asgard/build
run: make test
- name: Show Log
if: failure()
working-directory: ${{runner.workspace}}/asgard/build/Testing/Temporary
run: cat LastTest.log