Skip to content

Commit

Permalink
initial yaml file for daily build
Browse files Browse the repository at this point in the history
// BelongsTo: CS-332
// [skip ci]
  • Loading branch information
jgabler-hpc committed May 28, 2024
1 parent 3ee742d commit 1fe28e1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/daily_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: daily build
run-name: daily build triggered by ${{ github.actor }}
on: workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest
container: hpcgridware/clusterscheduler-image-rocky89:latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: run build and test script
shell: bash
run: container/build_and_test.sh -bashrc -pkg -doc
- name: upload artifacts
id: artifact-upload-step
uses: actions/upload-artifact@v4
with:
name: daily-build
path: ${{ github.workspace }}/packages/
retention-days: 7
compression-level: 0
- name: output artifact url
run: echo 'Artifact URL is ${{ steps.artifact-upload-step.outputs.artifact-url }}'

0 comments on commit 1fe28e1

Please sign in to comment.