Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
directionless committed Aug 3, 2023
1 parent 97f81d9 commit a4a8fb6
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,13 @@ jobs:

- name: Build
run: make -j2 github-build
env:
MACOSX_DEPLOYMENT_TARGET: 13 # FIXME

- name: Check macOS minumum Version
if: contains(matrix.os, 'macos')
# this uses grep's exit code
run: otool -l build/launcher | grep "minos 11"

- name: Lipo
run: make github-lipo
Expand All @@ -83,6 +90,13 @@ jobs:
key: ${{ runner.os }}-${{ github.run_id }}
enableCrossOsArchive: true

# upload coverage here, because we don't cache it with the build
- name: Upload coverage
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}-coverage.out
path: coverage.out

exec_testing:
name: Exec Test
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -153,12 +167,6 @@ jobs:
path: build/
if-no-files-found: error

- name: Upload coverage
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.artifactos }}-coverage.out
path: coverage.out


package_builder_test:
name: package_builder
Expand Down

0 comments on commit a4a8fb6

Please sign in to comment.