-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
cfa2a5d
commit b6f311c
Showing
6 changed files
with
94 additions
and
69 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--- | ||
|
||
github: cooljeanius | ||
ko_fi: ericgallager | ||
liberapay: egallager | ||
|
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
--- | ||
|
||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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
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
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--- | ||
|
||
name: cooljeanius/osxbom | ||
on: | ||
push: | ||
|
@@ -10,26 +12,29 @@ 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 && 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 | ||
- 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/[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 | ||
- clang | ||
- gcc | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- ubuntu-latest | ||
- macos-latest |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--- | ||
|
||
language: cpp | ||
os: | ||
- linux | ||
|