Skip to content

ci: build coatjava and gemc #4

ci: build coatjava and gemc

ci: build coatjava and gemc #4

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- master
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
# build
#############################################################################
build_coatjava:
runs-on: ubuntu-latest
steps:
- name: setup java
uses: actions/setup-java@v3
with:
java-version: 11
distribution: zulu
- name: clone
run: git clone https://github.com/JeffersonLab/coatjava.git
- name: build
run: |
cd coatjava
./build-coatjava.sh
- name: tree
run: tree
- name: tar
run: tar czvf coatjava{.tar.gz,}
- uses: actions/upload-artifact@v3
with:
name: build
retention-days: 1
path: ./*.tar.gz
build_gemc:
runs-on: ubuntu-latest
container: jeffersonlab/gemc:centos8
steps:
- name: clone
run: git clone https://github.com/gemc/clas12Tags.git
- name: build
run: |
cd clas12Tags/source
scons -j2 OPT=1
- name: tree
run: tree
- name: tar
run: tar czvf clas12Tags{.tar.gz,}
- uses: actions/upload-artifact@v3
with:
name: build
retention-days: 1
path: ./*.tar.gz
# test
#############################################################################
test:
needs:
- build_coatjava
- build_gemc
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: build
- name: tree
run: tree