Skip to content

Merge pull request #22 from cooljeanius/dependabot/github_actions/act… #79

Merge pull request #22 from cooljeanius/dependabot/github_actions/act…

Merge pull request #22 from cooljeanius/dependabot/github_actions/act… #79

Workflow file for this run

---
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 CC=${{ matrix.compiler }} && make"
- run: "make check && make distcheck"
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.4.3
with:
name: osxbom-gzipped_tarfile-${{ matrix.compiler }}-${{ matrix.os }}
path: osxbom-0.0.*.tar.gz
- name: Upload another Build Artifact
uses: actions/upload-artifact@v4.4.3
with:
name: osxbom-zipfile-${{ matrix.compiler }}-${{ matrix.os }}
path: osxbom-0.0.*.zip
strategy:
matrix:
compiler:
- clang
- gcc
os:
- ubuntu-latest
- macos-latest