Skip to content

Commit

Permalink
Build MacOS NE plugin awg/xray
Browse files Browse the repository at this point in the history
[macos-awg]
  • Loading branch information
outspace committed Jul 12, 2024
1 parent a2132cb commit a3517ed
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build_awg_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ jobs:
contains(github.event.head_commit.message, '[all]') ||
contains(github.event.head_commit.message, '[ios]') ||
contains(github.event.head_commit.message, '[ios-awg]') ||
contains(github.event.head_commit.message, '[macos-awg]') ||
contains(github.event.head_commit.message, '[macos-xray]') ||
contains(github.event.head_commit.message, '[awg]') ||
contains(github.event.head_commit.message, '[xray]') ||
contains(github.event.head_commit.message, '[ios-xray]')
strategy:
matrix:
arch: [arm64]
arch: [arm64], [x86_64]
platform: [iphoneos], [macosx14.2]

steps:
- name: 'Install dependencies'
Expand All @@ -36,12 +39,12 @@ jobs:

- name: 'Build WG'
working-directory: awg-apple/Sources/WireGuardKitGo
run: ARCHS=${{ matrix.arch }} PLATFORM_NAME=iphoneos make
run: ARCHS=${{ matrix.arch }} PLATFORM_NAME=${{ matrix.platform }} make

- name: 'Archive artifacts'
uses: actions/upload-artifact@v4
with:
name: awg-ios-${{ matrix.arch }}
name: awg-${{ matrix.platform }}-${{ matrix.arch }}
path: ${{ github.workspace }}/awg-apple/Sources/WireGuardKitGo/out
if-no-files-found: error
retention-days: 7
Expand Down

0 comments on commit a3517ed

Please sign in to comment.