Skip to content
This repository was archived by the owner on Sep 27, 2023. It is now read-only.

Disable building of mac binaries #43

Merged
merged 1 commit into from
Dec 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions .github/workflows/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: update-code
on:
schedule:
- cron: '42 0 * * 1'
workflow_dispatch:

jobs:
build:
Expand Down Expand Up @@ -76,15 +77,15 @@ jobs:
with:
fetch-depth: 1

- name: Compile Mac binaries
run: |
MAC=macosx
mkdir -p $MAC
for bin in byzcoin full; do go build -o $MAC ./cmd/$bin; done
( cd pkg/cothority; \
for bin in byzcoin/bcadmin scmgr personhood/phapp; do \
go build -o ../../$MAC ./$bin; \
done )
# - name: Compile Mac binaries
# run: |
# MAC=macosx
# mkdir -p $MAC
# for bin in byzcoin full; do go build -o $MAC ./cmd/$bin; done
# ( cd pkg/cothority; \
# for bin in byzcoin/bcadmin scmgr personhood/phapp; do \
# go build -o ../../$MAC ./$bin; \
# done )

- name: Fetch linux binaries
uses: actions/download-artifact@v2
Expand Down