Skip to content

Commit

Permalink
Add .github/workflows/build_tests-linux.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeokkim committed Nov 8, 2024
1 parent f881b88 commit c514757
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 1 deletion.
48 changes: 48 additions & 0 deletions .github/workflows/build_tests-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#
# Copyright (c) 2021-2024 Jaedeok Kim <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#

---

name: "GNU/Linux"

on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out the current repository
uses: actions/checkout@v4

- name: Build a static version of this library
run: |
make
- name: Run the test suite
run: |
make -C tests -f Makefile
./tests/bin/ferox_tests.out
48 changes: 48 additions & 0 deletions .github/workflows/build_tests-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#
# Copyright (c) 2021-2024 Jaedeok Kim <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#

---

name: "macOS"

on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]

jobs:
build:
runs-on: macos-latest

steps:
- name: Check out the current repository
uses: actions/checkout@v4

- name: Build a static version of this library
run: |
make
- name: Run the test suite
run: |
make -C tests -f Makefile
./tests/bin/ferox_tests.out
2 changes: 1 addition & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ build: ${TARGETS}

.c.o:
@printf "${LOG_PREFIX} Compiling: $@ (from $<)\n"
@${CC} -c $< -o $@ ${CFLAGS} ${LDFLAGS} ${LDLIBS}
@${CC} -c $< -o $@ ${CFLAGS}

${TARGETS}: ${OBJECTS}
@mkdir -p ${BINARY_PATH}
Expand Down

0 comments on commit c514757

Please sign in to comment.