Skip to content

Commit

Permalink
ci: fix build-macos-arm64 in binary_artifact.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Nov 11, 2023
1 parent 19bc165 commit a741050
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/binary_artifact.yml
Expand Up @@ -76,16 +76,16 @@ jobs:
runs-on: macos-latest
env:
CC: clang
CFLAGS: -target arm64-apple-darwin
TARGET_CFLAGS: -target arm64-apple-darwin
ZIPNAME: v_macos_arm64.zip
steps:
- uses: actions/checkout@v1
- name: Compile
run: |
make
./v -skip-unused -cc $CC -cflags "$CFLAGS" -prod -o v cmd/v
./v -skip-unused -cc $CC -cflags "$CFLAGS" -prod cmd/tools/vup.v
./v -skip-unused -cc $CC -cflags "$CFLAGS" -prod cmd/tools/vdoctor.v
./v -skip-unused -cc $CC -cflags "$TARGET_CFLAGS" -prod cmd/tools/vup.v
./v -skip-unused -cc $CC -cflags "$TARGET_CFLAGS" -prod cmd/tools/vdoctor.v
./v -skip-unused -cc $CC -cflags "$TARGET_CFLAGS" -prod -o v cmd/v
- name: Remove excluded
run: |
rm -rf .git/
Expand Down

0 comments on commit a741050

Please sign in to comment.