Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacoblightning authored Aug 4, 2024
1 parent 3a02dc1 commit 3c7d8e8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: C/C++ CI
name: build and upload

on:
push:
Expand All @@ -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]
Expand All @@ -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.
Expand Down

0 comments on commit 3c7d8e8

Please sign in to comment.