testing new setup
This commit is contained in:
parent
52a76bda5c
commit
4ee0675d36
|
@ -36,12 +36,11 @@ jobs:
|
|||
id: gen_vars
|
||||
shell: pwsh
|
||||
run: |
|
||||
$repo_url = "https://github.com/${env:GITHUB_REPOSITORY}.git"
|
||||
$build_num = [int]$env:GITHUB_RUN_NUMBER
|
||||
$adj_build_num = $build_num + 3000
|
||||
repo_url="https://github.com/${{ env.GITHUB_REPOSITORY }}.git"
|
||||
build_num=$(${{ env.GITHUB_RUN_NUMBER }} + 3000)
|
||||
|
||||
echo "::set-output name=repo_url::$repo_url"
|
||||
echo "::set-output name=adj_build_number::$adj_build_num"
|
||||
echo "::set-output name=adj_build_number::$build_num"
|
||||
|
||||
|
||||
cli:
|
||||
|
|
|
@ -0,0 +1,133 @@
|
|||
name: Release
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
release_tag_name_input:
|
||||
description: 'Release Tag Name <X.X.X>'
|
||||
required: true
|
||||
|
||||
|
||||
jobs:
|
||||
cloc:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up cloc
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt -y install cloc
|
||||
- name: Print lines of code
|
||||
run: cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git
|
||||
|
||||
|
||||
setup:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
repo_url: ${{ steps.gen_vars.outputs.repo_url }}
|
||||
adj_build_number: ${{ steps.gen_vars.outputs.adj_build_number }}
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Get Package Version
|
||||
id: gen_vars
|
||||
shell: pwsh
|
||||
run: |
|
||||
$repo_url = "https://github.com/${env:GITHUB_REPOSITORY}.git"
|
||||
$build_num = [int]$env:GITHUB_RUN_NUMBER
|
||||
$adj_build_num = $build_num + 3000
|
||||
|
||||
echo "::set-output name=repo_url::$repo_url"
|
||||
echo "::set-output name=adj_build_number::$adj_build_num"
|
||||
|
||||
|
||||
cli:
|
||||
runs-on: windows-latest
|
||||
needs: setup
|
||||
env:
|
||||
REPO_URL: ${{ needs.setup.outputs.repo_url }}
|
||||
BUILD_NUMBER: ${{ needs.setup.outputs.adj_build_number }}
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Windows builder
|
||||
run: |
|
||||
choco install checksum --no-progress
|
||||
choco install reshack --no-progress
|
||||
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '10.x'
|
||||
|
||||
- name: Print environment
|
||||
run: |
|
||||
node --version
|
||||
npm --version
|
||||
|
||||
#- name: Install Gulp
|
||||
# run: npm install -g gulp
|
||||
|
||||
- name: npm setup & test
|
||||
run: |
|
||||
npm install
|
||||
npm run dist
|
||||
npm run test
|
||||
|
||||
- name: gulp
|
||||
run: gulp ci
|
||||
|
||||
- name: Build sources for reviewers
|
||||
shell: cmd
|
||||
run: |
|
||||
mkdir dist\Source
|
||||
call git clone --branch=%GITHUB_REF% %REPO_URL% dist\Source
|
||||
cd dist\Source
|
||||
call git checkout %GITHUB_SHA%
|
||||
call git submodule update --init --recursive
|
||||
cd ../
|
||||
del /S/Q "Source\.git\objects\pack\*"
|
||||
call 7z a browser-source-%BUILD_NUMBER%.zip "Source\*"
|
||||
|
||||
- name: test dist
|
||||
run: ls dist
|
||||
|
||||
- name: Upload opera artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: dist-opera-${{ env.BUILD_NUMBER }}.zip
|
||||
path: dist/dist-opera-${{ env.BUILD_NUMBER }}.zip
|
||||
|
||||
- name: Upload chrome artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: dist-chrome-${{ env.BUILD_NUMBER }}.zip
|
||||
path: dist/dist-chrome-${{ env.BUILD_NUMBER }}.zip
|
||||
|
||||
- name: Upload firefox artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: dist-firefox-${{ env.BUILD_NUMBER }}.zip
|
||||
path: dist/dist-firefox-${{ env.BUILD_NUMBER }}.zip
|
||||
|
||||
- name: Upload edge artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: dist-edge-${{ env.BUILD_NUMBER }}.zip
|
||||
path: dist/dist-edge-${{ env.BUILD_NUMBER }}.zip
|
||||
|
||||
- name: Upload source artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: dist-source-${{ env.BUILD_NUMBER }}.zip
|
||||
path: dist/browser-source-${{ env.BUILD_NUMBER }}.zip
|
||||
|
||||
- name: Upload opera artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: coverage-${{ env.BUILD_NUMBER }}.zip
|
||||
path: coverage/coverage-${{ env.BUILD_NUMBER }}.zip
|
Loading…
Reference in New Issue