From 4993ada3e521cce5d402cadb816d00dd1d7aec3d Mon Sep 17 00:00:00 2001 From: Adam Hamsik Date: Fri, 29 Dec 2023 00:01:59 +0100 Subject: [PATCH] Add mac os build --- .github/workflows/buildci.yml | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/.github/workflows/buildci.yml b/.github/workflows/buildci.yml index 3238a66..d811733 100644 --- a/.github/workflows/buildci.yml +++ b/.github/workflows/buildci.yml @@ -7,21 +7,31 @@ on: branches: [ "master" ] jobs: - build: - + build-linux: runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3 + + - name: configure + run: ./configure - - name: configure - run: ./configure + - name: Build Proxychains + run: make + + - name: Run Proxychains + run: ./proxychains4 -v + build-macos: + runs-on: macos-12 + steps: + - uses: actions/checkout@v3 - - name: Build Proxychains - run: make + - name: configure + run: ./configure - - name: Run Proxychains - run: ./proxychains4 -v + - name: Build Proxychains + run: make + - name: Run Proxychains + run: ./proxychains4 -v