forked from HewlettPackard/lustre_exporter
-
Notifications
You must be signed in to change notification settings - Fork 21
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 #33 from benibr/master
Create basic CI
- Loading branch information
Showing
2 changed files
with
56 additions
and
1 deletion.
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,55 @@ | ||
name: Continuous Integration | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- '**' | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-run-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository contents | ||
uses: actions/checkout@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Build binary | ||
run: | | ||
docker build --tag lustre_exporter:binary -f docker/Dockerfile . | ||
- name: Build rpm | ||
run: | | ||
docker build -t lustre_exporter:rpm -f docker/RPM-Dockerfile . | ||
- name: Extract binary | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
run: | | ||
docker run --rm -v $PWD:/cpy lustre_exporter:binary | ||
sudo chown -R $USER:$GROUP build | ||
- name: Upload binary | ||
uses: actions/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
with: | ||
name: lustre-exporter Binary ${{ github.ref_name }} | ||
path: build/ | ||
- name: Extract rpm | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
run: | | ||
sudo rm -rf build | ||
docker run --rm -v $PWD:/rpm lustre_exporter:rpm | ||
sudo chown -R $USER:$GROUP build | ||
- name: Upload RPM | ||
uses: actions/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
with: | ||
name: lustre-exporter RPM ${{ github.ref_name }} | ||
path: build/ |
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