forked from svpcom/rtl8812au
-
Notifications
You must be signed in to change notification settings - Fork 10
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
9479de0
commit 30b797f
Showing
2 changed files
with
37 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Build test | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }} | ||
steps: | ||
- name: Maximize build space | ||
uses: easimon/maximize-build-space@master | ||
with: | ||
root-reserve-mb: 512 | ||
swap-size-mb: 1024 | ||
remove-dotnet: 'true' | ||
remove-android: 'true' | ||
remove-haskell: 'true' | ||
overprovision-lvm: 'true' | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- uses: pguyot/arm-runner-action@98b8d5a3228f504a8bd54913ab1e23d70f369c6e | ||
id: build_image | ||
with: | ||
base_image: raspios_lite:2023-05-03 | ||
image_additional_mb: 4000 | ||
copy_repository_path: /opt | ||
copy_artifact_path: OpenHD | ||
import_github_env: true | ||
commands: | | ||
cd /opt | ||
cd rtl8812au | ||
sudo apt update | ||
sudo apt install -y build-essential tree | ||
make | ||
ls |
File renamed without changes.