-
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.
- Loading branch information
1 parent
3a02dc1
commit 3c7d8e8
Showing
1 changed file
with
5 additions
and
3 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,4 +1,4 @@ | ||
name: C/C++ CI | ||
name: build and upload | ||
|
||
on: | ||
push: | ||
|
@@ -13,9 +13,11 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Deps | ||
run: sudo apt update && sudo apt upgrade && sudo apt install linux-headers -y | ||
- name: make | ||
run: make | ||
- name: prep_artifacting | ||
- name: Prep Artifacting | ||
run: mkdir artifact && mv kudo kudo_mod.ko artifact | ||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
|
@@ -37,7 +39,7 @@ jobs: | |
# Minimum 1 day. Maximum 90 days unless changed from the repository settings page. | ||
# retention-days: 0 # optional | ||
|
||
# The level of compression for Zlib to be applied to the artifact archive. The value can range from 0 to 9: - 0: No compression - 1: Best speed - 6: Default compression (same as GNU Gzip) - 9: Best compression Higher levels will result in better compression, but will take longer to complete. For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads. | ||
# The compression level for Zlib to be applied to the artifact archive. The value can range from 0 to 9: - 0: No compression - 1: Best speed - 6: Default compression (same as GNU Gzip) - 9: Best compression Higher levels will result in better compression, but will take longer to complete. For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads. | ||
# compression-level: # optional, default is 6 | ||
|
||
# If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. Does not fail if the artifact does not exist. | ||
|