Skip to content

test: ci/cd

test: ci/cd #7

Workflow file for this run

name: ci
on:
push:
branches:
- "ci/cd"
pull_request:
branches:
- "ci/cd"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '^1.21.5'
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Installing Dependencies
run: |
sudo apt install gcc-aarch64-linux-gnu wget -y
wget https://dl.google.com/android/repository/android-ndk-r26b-linux.zip
unzip android-ndk-r26b-linux.zip
export ANDROID_NDK_HOME=$(pwd)/android-ndk-r26b
export PATH=$PATH:$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin
- name: BUILD
name: |

Check failure on line 33 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 33, Col: 7): 'name' is already defined .github/workflows/build.yml (Line: 32, Col: 7): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
export CC=$(which aarch64-linux-android28-clang)
export CXX=$(which aarch64-linux-android28-clang++)
export GOOS=android
export GOARCH=arm64
poetry install
poetry run build goneonize
poetry build