Skip to content

Commit

Permalink
updated build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
brichards64 committed Mar 27, 2024
1 parent 5ab7c16 commit d32905d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 5 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/c-cpptooldaq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: test
run : source ./Setup.sh && ./main

build_centos-latest:
build_centos-stream-8:
runs-on: ubuntu-latest
container: 'centos:latest'
container: 'quay.io/centos/centos:stream8'
steps:
- uses: actions/checkout@v2
- name: prerequisits
Expand All @@ -44,3 +44,15 @@ jobs:
run: ./GetToolDAQ.sh
- name: test
run : source ./Setup.sh && ./main

build_Rocky-9:
runs-on: ubuntu-latest
container: 'rockylinux:9'
steps:
- uses: actions/checkout@v2
- name: prerequisits
run: yum install -y git make gcc-c++ zlib-devel dialog
- name: Get ToolDAQ
run: ./GetToolDAQ.sh
- name: test
run : source ./Setup.sh && ./main
19 changes: 16 additions & 3 deletions .github/workflows/c-cpptoolframework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,23 @@ jobs:
run: ./GetToolFramework.sh
- name: test
run : source ./Setup.sh && ./main

build_centos-latest:

build_centos-stream-8:
runs-on: ubuntu-latest
container: 'quay.io/centos/centos:stream8'
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_Rocky-9:
runs-on: ubuntu-latest
container: 'centos:latest'
container: 'rockylinux:9'
steps:
- uses: actions/checkout@v2
- name: prerequisits
Expand Down

0 comments on commit d32905d

Please sign in to comment.