You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			99 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			99 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			YAML
		
	
# This script will build session production binaries anytime a branch is updated
 | 
						|
name: Session Build Binaries
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - master
 | 
						|
      - clearnet
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    runs-on: ${{ matrix.os }}
 | 
						|
    strategy:
 | 
						|
      fail-fast: false
 | 
						|
      matrix:
 | 
						|
        os: [windows-2016, macos-latest, ubuntu-18.04]
 | 
						|
    env:
 | 
						|
      SIGNAL_ENV: production
 | 
						|
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
						|
    steps:
 | 
						|
      - name: Checkout git repo
 | 
						|
        uses: actions/checkout@v2
 | 
						|
 | 
						|
      - name: Pull git submodules
 | 
						|
        run: git submodule update --init
 | 
						|
 | 
						|
      - name: Install node
 | 
						|
        uses: actions/setup-node@v1
 | 
						|
        with:
 | 
						|
          node-version: 10.19.0
 | 
						|
 | 
						|
      - name: Chocolatey Install Action
 | 
						|
        if: runner.os == 'Windows'
 | 
						|
        uses: crazy-max/ghaction-chocolatey@v1.4.2
 | 
						|
        with:
 | 
						|
          args: install python2 visualcpp-build-tools -y
 | 
						|
 | 
						|
      - name: Add msbuild to PATH
 | 
						|
        uses: microsoft/setup-msbuild@v1.0.2
 | 
						|
        if: runner.os == 'Windows'
 | 
						|
 | 
						|
      - name: Setup node for windows
 | 
						|
        if: runner.os == 'Windows'
 | 
						|
        run: |
 | 
						|
          npm install --global node-gyp@latest
 | 
						|
          npm config set python python2.7
 | 
						|
          npm config set msvs_version 2017          
 | 
						|
 | 
						|
      - name: Install yarn
 | 
						|
        run: npm install yarn --no-save
 | 
						|
 | 
						|
      - name: Install Dependencies
 | 
						|
        run: yarn install --frozen-lockfile --network-timeout 600000
 | 
						|
 | 
						|
      - name: Generate and concat files
 | 
						|
        run: yarn generate
 | 
						|
 | 
						|
      - name: Lint Files
 | 
						|
        if: runner.os != 'Windows'
 | 
						|
        run: yarn lint-full
 | 
						|
 | 
						|
      - name: Build windows production binaries
 | 
						|
        if: runner.os == 'Windows'
 | 
						|
        run: node_modules\.bin\electron-builder --config.extraMetadata.environment=%SIGNAL_ENV% --publish=never --config.directories.output=release
 | 
						|
 | 
						|
      - name: Build mac production binaries
 | 
						|
        if: runner.os == 'macOS'
 | 
						|
        run: |
 | 
						|
          source ./build/setup-mac-certificate.sh
 | 
						|
          $(yarn bin)/electron-builder --config.extraMetadata.environment=$SIGNAL_ENV --config.mac.bundleVersion=${{ github.ref }} --publish=never --config.directories.output=release          
 | 
						|
        env:
 | 
						|
          MAC_CERTIFICATE: ${{ secrets.MAC_CERTIFICATE }}
 | 
						|
          MAC_CERTIFICATE_PASSWORD: ${{ secrets.MAC_CERTIFICATE_PASSWORD }}
 | 
						|
          SIGNING_APPLE_ID: ${{ secrets.SIGNING_APPLE_ID }}
 | 
						|
          SIGNING_APP_PASSWORD: ${{ secrets.SIGNING_APP_PASSWORD }}
 | 
						|
          SIGNING_TEAM_ID: ${{ secrets.SIGNING_TEAM_ID }}
 | 
						|
 | 
						|
      - name: Build linux production binaries
 | 
						|
        if: runner.os == 'Linux'
 | 
						|
        run: $(yarn bin)/electron-builder --config.extraMetadata.environment=$SIGNAL_ENV --publish=never --config.directories.output=release
 | 
						|
 | 
						|
      - name: Remove unpacked files
 | 
						|
        run: |
 | 
						|
          ls -d -- */ | xargs -I{} echo "Removing {}"
 | 
						|
          ls -d -- */ | xargs -I{} rm -rf {}          
 | 
						|
        shell: bash
 | 
						|
        working-directory: ./release/
 | 
						|
 | 
						|
      - name: Remaining files
 | 
						|
        run: ls .
 | 
						|
        shell: bash
 | 
						|
        working-directory: ./release/
 | 
						|
 | 
						|
      - name: Upload Production Artifacts
 | 
						|
        uses: actions/upload-artifact@v1
 | 
						|
        with:
 | 
						|
          name: ${{ runner.OS }}-production
 | 
						|
          path: release
 |