diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..a6857ca --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,22 @@ +name: Build + +on: workflow_dispatch +jobs: + build-linux: + runs-on: ubuntu-latest + name: Build on amd64 + steps: + - name: Update binaries + run: | + sudo apt update || true + sudo apt install -y g++-aarch64-linux-gnu || true + git clone -b workflows-test --recursive https://github.com/cirospaciari/socketify.py.git + cd socketify.py/src/socketify/native + make linux + cd ../ + git add libsocketify_linux_amd64.so + git config --global user.email "ciro.spaciari@gmail.com" + git config --global user.name "Ciro Spaciari" + git commit -a -m "[GitHub Actions] Updated linux-amd64 binaries" || true + git push "https://cirospaciari:${{ secrets.BUILDTOKEN }}@github.com/cirospaciari/socketify.py.git" workflows-test +