-
Notifications
You must be signed in to change notification settings - Fork 10
40 lines (38 loc) · 996 Bytes
/
main.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
---
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu2004, ubuntu2204, rockylinux9]
websession: [true, false]
webprefix: ["", "/omero"]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up
run: ./.travis/before_install.sh
env:
OS: ${{ matrix.os }}
ICEVER: 3.6
DOCKER: true
WEBSESSION: ${{ matrix.websession }}
WEBPREFIX: ${{ matrix.webprefix }}
TRAVIS_OS_NAME: linux
TRAVIS: true
- name: Install
run: ./.travis/install.sh
env:
OS: ${{ matrix.os }}
ICEVER: 3.6
DOCKER: true
WEBSESSION: ${{ matrix.websession }}
WEBPREFIX: ${{ matrix.webprefix }}
TRAVIS_OS_NAME: linux
- name: Script
run: ./.travis/script.sh
env:
TRAVIS_OS_NAME: linux
OS: ${{ matrix.os }}