Skip to content

Merge pull request #2 from ToolFramework/v3.0 #18

Merge pull request #2 from ToolFramework/v3.0

Merge pull request #2 from ToolFramework/v3.0 #18

name: ToolFramework C/C++ CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_ubuntu-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get ToolFramework
run: ./GetToolFramework.sh
- name: test
run : source ./Setup.sh && ./main
build_centos-latest:
runs-on: ubuntu-latest
container: 'centos:latest'
steps:
- uses: actions/checkout@v2
- name: prerequisits
run: yum install -y git make gcc-c++ zlib-devel dialog
- name: Get ToolFramework
run: ./GetToolFramework.sh
- name: test
run : source ./Setup.sh && ./main
build_centos-7:
runs-on: ubuntu-latest
container: 'centos:centos7'
steps:
- uses: actions/checkout@v2
- name: prerequisits
run: yum install -y git make gcc-c++ zlib-devel dialog
- name: Get ToolFramework
run: ./GetToolFramework.sh
- name: test
run : source ./Setup.sh && ./main