-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from rudi-cilibrasi/add-basic-build-cicd
add basic build cicd
- Loading branch information
Showing
3 changed files
with
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: CI | ||
on: | ||
push: | ||
jobs: | ||
build-test-job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: "actions/checkout@v4" | ||
- name: Run Build Test | ||
run: ./scripts/run_build_test.sh |
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,11 @@ | ||
# Copyright (C) 2022-present Shanghai HPC-NOW Technologies Co., Ltd. | ||
# This code is distributed under the license: MIT License | ||
# Originally written by Zhenrong WANG | ||
# mailto: [email protected] | [email protected] | ||
|
||
#!/bin/bash | ||
|
||
set -e | ||
cd $(dirname $0)/.. | ||
rm -rf build && ./make_linux.sh build | ||
exit 0 |