We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e2d3a commit ee3ab79Copy full SHA for ee3ab79
.github/workflows/end_to_end_regression_aurora.yml
@@ -0,0 +1,24 @@
1
+name: End-to-end Testing (regression) Aurora
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - darshan-runtime/**
9
+ - .github/workflows/end_to_end_regression_aurora.yml
10
+ workflow_dispatch:
11
12
+jobs:
13
+ trigger_alcf_aurora_regression_ci:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Get branch/tag name
17
+ run: echo "GITHUB_REF_NAME=$(echo ${GITHUB_REF} | cut --complement -d/ -f1,2)" >> $GITHUB_ENV
18
+ - uses: eic/trigger-gitlab-ci@v3
19
+ with:
20
+ url: https://gitlab-ci.alcf.anl.gov
21
+ project_id: 174
22
+ token: ${{ secrets.ALCF_GITLAB_CI_TOKEN }}
23
+ variables: |
24
+ GITHUB_REF_NAME="${{ env.GITHUB_REF_NAME }}"
0 commit comments