Update README.md #2
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
name: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install aria2 | |
run: sudo apt install aria2 -y | |
- name: Install LLVM | |
run: sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" | |
- name: Set up Android NDK r23b | |
run: | | |
aria2c -o android-ndk-r23b-linux.zip https://dl.google.com/android/repository/android-ndk-r23b-linux.zip | |
unzip -q -d ~ android-ndk-r23b-linux.zip | |
- name: Build | |
run: | | |
make | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Wrapper.x86_64 | |
path: | | |
rootfs | |
wrapper |