-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 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,52 @@ | ||
name: oneshot-build | ||
on: push | ||
jobs: | ||
setup-containers: | ||
strategy: | ||
#fail-fast: true | ||
matrix: | ||
os: [ 'el7', 'el8', 'el9' ] | ||
|
||
runs-on: ubuntu-latest | ||
|
||
container: | ||
#image: ghcr.io/perfsonar/unibuild/${{ matrix.os }}:latest | ||
image: ghcr.io/perfsonar/docker-oneshot-builder/${{ matrix.os }}:latest | ||
volumes: | ||
- ${{ github.workspace }}:/build | ||
|
||
steps: | ||
- name: Check out Repo | ||
uses: actions/checkout@v3 | ||
- name: install dependancies repo | ||
if: ${{ matrix.os == 'el7' }} | ||
run: yum -y install -y http://linux.mirrors.es.net/perfsonar/${{ matrix.os }}/x86_64/5/packages/perfsonar-repo-0.11-1.noarch.rpm | ||
- name: install deps El8 | ||
if: ${{ matrix.os == 'el8' }} | ||
run: dnf -y install -y http://linux.mirrors.es.net/perfsonar/${{ matrix.os }}/x86_64/5/packages/perfsonar-repo-0.11-1.noarch.rpm | ||
- name: install deps EL9 | ||
if: ${{ matrix.os == 'el9' }} | ||
run: dnf -y install -y http://linux.mirrors.es.net/perfsonar/${{ matrix.os }}/x86_64/5/packages/perfsonar-repo-0.11-1.noarch.rpm | ||
- name: install deps d10 | ||
if: ${{ matrix.os == 'd10' }} | ||
run: export DEBIAN_FRONTEND=noninteractive && curl -s http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.gpg.key | apt-key add - && curl -s -o /etc/apt/sources.list.d/perfsonar-minor-snapshot.list http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.list && apt-get update && echo && echo | ||
- name: install deps d12 | ||
if: ${{ matrix.os == 'd12' }} | ||
run: export DEBIAN_FRONTEND=noninteractive && curl -s http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.gpg.key | apt-key add - && curl -s -o /etc/apt/sources.list.d/perfsonar-minor-snapshot.list http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.list && apt-get update && echo && echo | ||
- name: install deps u18 | ||
if: ${{ matrix.os == 'u18' }} | ||
run: export DEBIAN_FRONTEND=noninteractive && curl -s http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.gpg.key | apt-key add - && curl -s -o /etc/apt/sources.list.d/perfsonar-minor-snapshot.list http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.list && apt-get update && echo && echo | ||
- name: install deps u20 | ||
if: ${{ matrix.os == 'u20' }} | ||
run: export DEBIAN_FRONTEND=noninteractive && curl -s http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.gpg.key | apt-key add - && curl -s -o /etc/apt/sources.list.d/perfsonar-minor-snapshot.list http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.list && apt-get update && echo && echo | ||
|
||
- name: build | ||
run: make | ||
- name: tar files | ||
run: tar -cvf psconfig.tar * | ||
|
||
- name: Archive repo | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: psconfig-${{ matrix.os }}.tar | ||
path: psconfig.tar |