-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github-actions - introduce make-test workflow
- Loading branch information
1 parent
ea2b761
commit 1d14c75
Showing
2 changed files
with
32 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: make-test | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
os: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
make-test: | ||
runs-on: ubuntu-latest | ||
container: ${{ inputs.os }} | ||
steps: | ||
- name: Install dependencies | ||
run: | | ||
dnf install -y make gcc-c++ cmake3 git rpm-build fuse3-devel | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Mark github workspace as safe | ||
run: git config --system --add safe.directory $PWD | ||
- name: make test | ||
run: make test |