Skip to content

Commit

Permalink
12
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgiving committed Aug 13, 2022
1 parent 01a567e commit 9132c31
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/workflow.yaml
Expand Up @@ -5,21 +5,14 @@ on: [push, pull_request, workflow_dispatch]
env:
repo_name: ${{ github.repository }}
sha_git: ${{ github.sha }}
CC: gcc-5
CXX: g++-5

jobs:
Build_Workflow:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3

- name: Install packages
run: |
apt-get install gcc-5 g++-5

- name: Build Stage
run: |
mkdir build
Expand All @@ -28,11 +21,10 @@ jobs:
make -j
- name: ADE-Test Stage
run: |
ls build/bin
./build/bin/ade-tests
run: ./build/bin/ade-tests

- name: CMN-Test Stage
run: |
./build/bin/common-tests
run: ./build/bin/common-tests



0 comments on commit 9132c31

Please sign in to comment.