-
-
Notifications
You must be signed in to change notification settings - Fork 3
35 lines (35 loc) · 1007 Bytes
/
osxbom.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
name: cooljeanius/osxbom
on:
push:
branches:
- "**/*"
tags:
- "0.0.*"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v4
# # 'Transformers::TravisCI::Scripts::Dependencies' dependencies are currently unsupported
# # 'compiler' was not transformed because there is no suitable equivalent in GitHub Actions
- run: "./configure && make && make check && make distcheck"
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: osxbom-gzipped_tarfile-${{ matrix.compiler }}-${{ matrix.os }}
path: osxbom-0.0.*.tar.gz
- name: Upload another Build Artifact
uses: actions/[email protected]
with:
name: osxbom-zipfile-${{ matrix.compiler }}-${{ matrix.os }}
path: osxbom-0.0.*.zip
strategy:
matrix:
compiler:
- clang
- gcc
os:
- ubuntu-latest
- macos-latest