Skip to content

Commit

Permalink
Add mac os build
Browse files Browse the repository at this point in the history
  • Loading branch information
haad committed Dec 28, 2023
1 parent 357e423 commit 4993ada
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .github/workflows/buildci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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


0 comments on commit 4993ada

Please sign in to comment.