Skip to content

Commit

Permalink
Update build_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Mar 18, 2024
1 parent fe3c566 commit 4c94a1f
Showing 1 changed file with 16 additions and 51 deletions.
67 changes: 16 additions & 51 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -1,61 +1,26 @@
name: build on x86 lunar
name: Build test

on: [push]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release

jobs:
build:
#runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
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'
- name: test
run: |
echo "DT=$(date +'%Y-%m-%d_%H%M')" >> $GITHUB_ENV
echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
submodules: recursive

- name: remove even more
run: |
sudo apt-get purge -y \
'^llvm-.*' \
'php.*' \
'^mongodb-.*' \
'^mysql-.*' \
azure-cli \
google-chrome-stable \
firefox \
powershell \
microsoft-edge-stable \
mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Building OpenHD in CHROOT
run: |
git clone https://github.com/OpenHD/ChrootCompilationTest /opt/ChrootCompilationTest
mkdir -p /opt/ChrootCompilationTest/additionalFiles
git clone https://github.com/OpenHD/rtl88x2bu -b ${{ github.ref_name }} /opt/ChrootCompilationTest/additionalFiles/ --recursive
echo $CLOUDSMITH_API_KEY > /opt/ChrootCompilationTest/additionalFiles/cloudsmith_api_key.txt
echo "AMD64" > /opt/ChrootCompilationTest/additionalFiles/arch.txt
echo "ubuntu" > /opt/ChrootCompilationTest/additionalFiles/distro.txt
echo "lunar" > /opt/ChrootCompilationTest/additionalFiles/flavor.txt
echo "${{ github.ref_name }}" > /opt/ChrootCompilationTest/additionalFiles/repo.txt
cd /opt/ChrootCompilationTest/
sudo apt update
sudo bash install_dep.sh
sudo bash ./build.sh x86-lunar $API_KEY ubuntu lunar
- name: build on x86
run: |
ls -a /usr/src/
sudo apt update
sudo apt install -y build-essential
mkdir -p /opt/additionalFiles
make ARCH=x86 CROSS_COMPILE= -C /usr/src/linux-headers-6.5.0-1016-azure M=/opt/additionalFiles modules
ls

0 comments on commit 4c94a1f

Please sign in to comment.