-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from DUNE-DAQ/aeo/v4_to_v5
v4 to v5 Port
- Loading branch information
Showing
33 changed files
with
3,159 additions
and
1,280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: build-develop | ||
|
||
# Controls when the action will run. Workflow runs when manually triggered using the UI | ||
# or API. | ||
on: | ||
push: | ||
branches: | ||
- production/v4 | ||
- patch/* | ||
- prep-release/* | ||
paths-ignore: | ||
- 'docs/**' | ||
- '.github/**' | ||
pull_request: | ||
branches: [ production/v4 ] | ||
schedule: | ||
- cron: "0 9 * * *" | ||
|
||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
Build_against_dev_release: | ||
name: build_against_dev_on_${{ matrix.os_name }} | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- image: "ghcr.io/dune-daq/nightly-release-alma9:production_v4" | ||
os_name: "a9" | ||
container: | ||
image: ${{ matrix.image }} | ||
defaults: | ||
run: | ||
shell: bash | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Runs a single command using the runners shell | ||
|
||
- name: Checkout daq-release | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: DUNE-DAQ/daq-release | ||
path: daq-release | ||
|
||
- name: setup dev area | ||
run: | | ||
export REPO=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}') | ||
source /cvmfs/dunedaq.opensciencegrid.org/setup_dunedaq.sh | ||
setup_dbt latest_v4 || true | ||
release_name="last_fddaq" | ||
dbt-create -n $release_name dev-${{ matrix.os_name }} | ||
- name: checkout package for CI | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ${{ github.repository }} | ||
|
||
- name: setup build env, build the repo against the development release | ||
run: | | ||
export REPO=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}') | ||
cd $GITHUB_WORKSPACE/dev-${{ matrix.os_name }} | ||
source env.sh || true | ||
spack unload $REPO || true | ||
cp -pr $GITHUB_WORKSPACE/DUNE-DAQ/$REPO $GITHUB_WORKSPACE/dev-${{ matrix.os_name }}/sourcecode | ||
dbt-build # --unittest # --lint | ||
- name: upload build log file | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: build_log_${{ matrix.os_name }} | ||
path: ${{ github.workspace }}/dev-${{ matrix.os_name }}/log/build*.log | ||
|
||
# - name: upload linter output file | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: linting_log_${{ matrix.os_name }} | ||
# path: ${{ github.workspace }}/dev-${{ matrix.os_name }}/log/linting* | ||
|
||
# - name: upload unittest output file | ||
# uses: actions/upload-artifact@v3 | ||
# with: | ||
# name: unit_tests_log_${{ matrix.os_name }} | ||
# path: ${{ github.workspace }}/dev-${{ matrix.os_name }}/log/unit_tests* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.