Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Project Juggler
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
21
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
Project Juggler
Merge requests
!431
GitHub Actions workflows: build-test and clang-tidy
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
GitHub Actions workflows: build-test and clang-tidy
github-actions-workflows
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Wouter Deconinck
requested to merge
github-actions-workflows
into
master
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
e759fb21
2 commits,
2 years ago
1 file
+
43
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.github/workflows/linux-eic-shell.yml
0 → 100644
+
43
−
0
Options
name
:
linux-eic-shell
on
:
[
push
,
pull_request
]
jobs
:
build-test
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
cvmfs-contrib/github-action-cvmfs@v2
-
uses
:
eic/run-cvmfs-osg-eic-shell@main
with
:
platform-release
:
"
jug_xl:nightly"
run
:
|
PREFIX=${PWD}/install
# install this repo
cmake -B build -S . -DCMAKE_INSTALL_PREFIX=${PREFIX}
cmake --build build -- install
-
uses
:
actions/upload-artifact@v3
with
:
name
:
build-eic-shell
path
:
install/
if-no-files-found
:
error
clang-tidy
:
runs-on
:
ubuntu-latest
needs
:
build-test
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
cvmfs-contrib/github-action-cvmfs@v2
-
uses
:
actions/download-artifact@v3
with
:
name
:
build-eic-shell
path
:
install/
-
uses
:
eic/run-cvmfs-osg-eic-shell@main
with
:
platform-release
:
"
jug_xl:nightly"
run
:
|
run-clang-tidy-13 -p build -export-fixes clang_tidy_fixes.yml -extra-arg='-std=c++17'
-
uses
:
actions/upload-artifact@v3
with
:
name
:
clang-tidy-fixes.yml
path
:
clang_tidy_fixes.yml
Loading