|
|
|
@ -4,10 +4,7 @@ name: Session Test
|
|
|
|
|
on:
|
|
|
|
|
pull_request:
|
|
|
|
|
branches:
|
|
|
|
|
- development
|
|
|
|
|
- clearnet
|
|
|
|
|
- github-actions
|
|
|
|
|
- react-refactor
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
|
|
|
@ -28,38 +25,41 @@ jobs:
|
|
|
|
|
- name: Pull git submodules
|
|
|
|
|
run: git submodule update --init
|
|
|
|
|
|
|
|
|
|
# file server dependencies are not needed for now
|
|
|
|
|
# - name: Install file server dependency
|
|
|
|
|
# run: |
|
|
|
|
|
# cd session-file-server
|
|
|
|
|
# yarn install;
|
|
|
|
|
# cd -
|
|
|
|
|
|
|
|
|
|
- name: Install node
|
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
|
with:
|
|
|
|
|
node-version: 10.13.0
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
#Not having this will break the windows build because the PATH won't be set by msbuild.
|
|
|
|
|
- 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 --production windows-build-tools@4.0.0
|
|
|
|
|
npm install --global node-gyp@latest
|
|
|
|
|
npm config set python python2.7
|
|
|
|
|
npm config set msvs_version 2015
|
|
|
|
|
npm config set msvs_version 2017
|
|
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
|
id: yarn-cache
|
|
|
|
|
if: runner.os != 'Windows'
|
|
|
|
|
with:
|
|
|
|
|
path: '**/node_modules'
|
|
|
|
|
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
|
|
|
|
|
|
- name: Install Dependencies #skipped if step before set variable to true
|
|
|
|
|
- name: Install Dependencies #skipped if step before set variable to true
|
|
|
|
|
if: |
|
|
|
|
|
steps.yarn-cache.outputs.cache-hit != 'true'
|
|
|
|
|
run: yarn install --frozen-lockfile --network-timeout 600000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Generate and concat files
|
|
|
|
|
run: yarn generate
|
|
|
|
|
|
|
|
|
|