-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (38 loc) · 1.18 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
on:
workflow_dispatch:
push:
branches: main
name: Regression Testing
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Singularity
run: |
sudo apt-get update && \
sudo curl -LO https://github.com/apptainer/apptainer/releases/download/v1.3.5/apptainer_1.3.5_amd64.deb && \
sudo apt install ./apptainer_1.3.5_amd64.deb && sudo rm -rf appt*
- name: Build & Check Ubuntu Noble
uses: ./.github/actions/singularity
with:
linux_distro: "noble"
- name: Build & Check Ubuntu Jammy
uses: ./.github/actions/singularity
with:
linux_distro: "jammy"
- name: Build & Check Ubuntu Focal
uses: ./.github/actions/singularity
with:
linux_distro: "focal"
- name: Build & Check Rocky Linux 8
uses: ./.github/actions/singularity
with:
linux_distro: "rockylinux8"
- name: Build & Check Rocky Linux 9
uses: ./.github/actions/singularity
with:
linux_distro: "rockylinux9"