mirror of
https://github.com/msojocs/wechat-web-devtools-linux.git
synced 2025-07-22 00:00:04 +08:00
103 lines
3.3 KiB
YAML
103 lines
3.3 KiB
YAML
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
name: Node.js CI
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
push:
|
|
tags:
|
|
- v*
|
|
branches: [ master, appimage ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
# # Allows you to run this workflow manually from the Actions tab
|
|
# workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [16.x]
|
|
ARCH: ['x86_64']
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'npm'
|
|
|
|
- name: Prepare
|
|
run: |
|
|
pwd
|
|
ls -l
|
|
export ACTION_MODE=true
|
|
npm uninstall node-gyp -g
|
|
npm install node-gyp nw-gyp npm -g
|
|
|
|
- id: Tag
|
|
run: |
|
|
tag='continuous'
|
|
name='Continuous Build'
|
|
if [ 'true' == ${{ startsWith(github.ref, 'refs/tags/') }} ];then
|
|
tag='${{ github.ref_name }}'
|
|
name='${{ github.ref_name }}'
|
|
fi
|
|
echo "tag result: $tag - $name"
|
|
echo "::set-output name=tag::$tag"
|
|
echo "::set-output name=name::$name"
|
|
|
|
- name: Build
|
|
run: docker-compose up
|
|
|
|
- name: Build AppImage
|
|
run: |
|
|
sudo chmod -R 777 tmp package.nw node
|
|
bash tools/appimage.sh
|
|
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage"
|
|
chmod a+x appimagetool-x86_64.AppImage
|
|
./appimagetool-x86_64.AppImage ./tmp/AppDir
|
|
env:
|
|
name: 'release-${{ steps.tag.outputs.tag }}'
|
|
ARCH: '${{ matrix.ARCH }}'
|
|
|
|
- name: Delete unused file
|
|
run: |
|
|
ls -l
|
|
sudo rm -rf cache tmp appimagetool-x86_64.AppImage
|
|
mkdir ${{ env. name }}
|
|
sudo find -maxdepth 1 -not -name ${{ env.name }} -not -name . -exec mv {} ${{ env.name }} \;
|
|
sudo cp -r "${{ env.name }}/package.nw/node_modules/nodegit" nodegit
|
|
sudo cp -r "${{ env.name }}/compiler" compiler
|
|
sudo mv ${{ env.name }}/WeChat*.AppImage .
|
|
ls -l
|
|
cd "${{ env.name }}"
|
|
env:
|
|
name: 'release-${{ steps.tag.outputs.tag }}'
|
|
|
|
- name: Compress
|
|
run: |
|
|
ls -l
|
|
tar -zvcf ${{ env.name }}.tar.gz ${{ env.name }}
|
|
tar -zvcf compiler.tar.gz compiler
|
|
tar -zvcf nodegit.tar.gz nodegit
|
|
sudo rm -rf ${{ env.name }} compiler nodegit
|
|
ls -l
|
|
env:
|
|
name: 'release-${{ steps.tag.outputs.tag }}'
|
|
|
|
- name: Create release and upload artifacts
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage
|
|
chmod +x pyuploadtool-x86_64.AppImage
|
|
./pyuploadtool-x86_64.AppImage *.AppImage* *.tar.gz
|