fix: disable macos arm64 build temporarily

pull/3086/head
Tienson Qin 2021-11-06 20:52:02 +08:00
parent d8c9045320
commit 224ced921f
1 changed files with 63 additions and 63 deletions

View File

@ -235,81 +235,81 @@ jobs:
name: Logseq-x64.zip
path: static/out/make/zip/darwin/x64/logseq-darwin-x64-${{ github.event.inputs.tag-version }}.zip
build-macos-arm64:
needs: [ compile-cljs ]
runs-on: macos-latest
# build-macos-arm64:
# needs: [ compile-cljs ]
# runs-on: macos-latest
steps:
# this is only needed temporarily
# wait until macos-11 GA https://github.com/actions/virtual-environments/issues/2486
# or m1 hardware https://github.com/actions/virtual-environments/issues/2187
- name: hack osx sdk
run: |
if [ "$(sw_vers -productVersion | cut -d'.' -f1)" = 10 ]; then
pushd /Library/Developer/CommandLineTools/SDKs
sudo rm MacOSX.sdk
sudo ln -s MacOSX11.1.sdk MacOSX.sdk
sudo rm -rf MacOSX10.15.sdk
ls -l
popd
fi
- name: Download The Static Asset
uses: actions/download-artifact@v1
with:
name: static.zip
path: ./
# steps:
# # this is only needed temporarily
# # wait until macos-11 GA https://github.com/actions/virtual-environments/issues/2486
# # or m1 hardware https://github.com/actions/virtual-environments/issues/2187
# - name: hack osx sdk
# run: |
# if [ "$(sw_vers -productVersion | cut -d'.' -f1)" = 10 ]; then
# pushd /Library/Developer/CommandLineTools/SDKs
# sudo rm MacOSX.sdk
# sudo ln -s MacOSX11.1.sdk MacOSX.sdk
# sudo rm -rf MacOSX10.15.sdk
# ls -l
# popd
# fi
# - name: Download The Static Asset
# uses: actions/download-artifact@v1
# with:
# name: static.zip
# path: ./
- name: Uncompress Static Files
run: unzip ./static.zip
# - name: Uncompress Static Files
# run: unzip ./static.zip
- name: List Static Files
run: ls -al ./static
# - name: List Static Files
# run: ls -al ./static
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
node-version: 16
# - name: Install Node.js, NPM and Yarn
# uses: actions/setup-node@v2
# with:
# node-version: 16
- name: Signing By Apple Developer ID
uses: apple-actions/import-codesign-certs@v1
with:
p12-file-base64: ${{ secrets.APPLE_CERTIFICATES_P12 }}
p12-password: ${{ secrets.APPLE_CERTIFICATES_P12_PASSWORD }}
# - name: Signing By Apple Developer ID
# uses: apple-actions/import-codesign-certs@v1
# with:
# p12-file-base64: ${{ secrets.APPLE_CERTIFICATES_P12 }}
# p12-password: ${{ secrets.APPLE_CERTIFICATES_P12_PASSWORD }}
# - name: Cache Node Modules
# uses: actions/cache@v2
# with:
# path: |
# **/node_modules
# key: ${{ runner.os }}-node-modules
# # - name: Cache Node Modules
# # uses: actions/cache@v2
# # with:
# # path: |
# # **/node_modules
# # key: ${{ runner.os }}-node-modules
- name: Build/Release Electron App
run: yarn install && yarn electron:make-macos-arm64
working-directory: ./static
env:
APPLE_ID: ${{ secrets.APPLE_ID_EMAIL }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
# - name: Build/Release Electron App
# run: yarn install && yarn electron:make-macos-arm64
# working-directory: ./static
# env:
# APPLE_ID: ${{ secrets.APPLE_ID_EMAIL }}
# APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
- name: Change DMG Name
run: mv static/out/make/*.dmg static/out/make/logseq-darwin-arm64-${{ github.event.inputs.tag-version }}.dmg
# - name: Change DMG Name
# run: mv static/out/make/*.dmg static/out/make/logseq-darwin-arm64-${{ github.event.inputs.tag-version }}.dmg
- name: Cache Artifact DMG
uses: actions/upload-artifact@v1
with:
name: Logseq-arm64.dmg
path: static/out/make/logseq-darwin-arm64-${{ github.event.inputs.tag-version }}.dmg
# - name: Cache Artifact DMG
# uses: actions/upload-artifact@v1
# with:
# name: Logseq-arm64.dmg
# path: static/out/make/logseq-darwin-arm64-${{ github.event.inputs.tag-version }}.dmg
- name: ls files
run: du -a static/out/
# - name: ls files
# run: du -a static/out/
- name: Change zip Name
run: mv static/out/make/zip/darwin/arm64/*.zip static/out/make/zip/darwin/arm64/logseq-darwin-arm64-${{ github.event.inputs.tag-version }}.zip
# - name: Change zip Name
# run: mv static/out/make/zip/darwin/arm64/*.zip static/out/make/zip/darwin/arm64/logseq-darwin-arm64-${{ github.event.inputs.tag-version }}.zip
- name: Cache Artifact ZIP
uses: actions/upload-artifact@v1
with:
name: Logseq-arm64.zip
path: static/out/make/zip/darwin/arm64/logseq-darwin-arm64-${{ github.event.inputs.tag-version }}.zip
# - name: Cache Artifact ZIP
# uses: actions/upload-artifact@v1
# with:
# name: Logseq-arm64.zip
# path: static/out/make/zip/darwin/arm64/logseq-darwin-arm64-${{ github.event.inputs.tag-version }}.zip
release:
# needs: [ build-macos, build-linux, build-windows, build-macos-arm64 ]