Skip to content

Commit

Permalink
matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgiving committed Aug 13, 2022
1 parent 9132c31 commit 1f4cf82
Showing 1 changed file with 35 additions and 5 deletions.
40 changes: 35 additions & 5 deletions .github/workflows/workflow.yaml
Expand Up @@ -6,13 +6,43 @@ env:
repo_name: ${{ github.repository }}
sha_git: ${{ github.sha }}

jobs:
Build_Workflow:
runs-on: ubuntu-22.04

# jobs:
# Build_Workflow:
# runs-on: ubuntu-22.04

# steps:
# - uses: actions/checkout@v3

# - name: Build Stage
# run: |
# mkdir build
# cd build
# cmake -DENABLE_ADE_TESTING=ON -DCMAKE_BUILD_TYPE=Release ..
# make -j

# - name: ADE-Test Stage
# run: ./build/bin/ade-tests

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

Perf_Test_Workflow:
strategy:
matrix:
os: [
#ubuntu-18.04
ubuntu-20.04,
#ubuntu-22.04,
#windows-2016,
#windows-2019,
#windows-2022,
#macos-10.15,
#macos-11,
]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- name: Build Stage
run: |
mkdir build
Expand Down

0 comments on commit 1f4cf82

Please sign in to comment.