[AUTO] Increment version to 2.10.1.0 #584
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and Build Gantt Chart | |
on: [pull_request, push] | |
env: | |
PLUGIN_NAME: gantt-chart-dashboards | |
OPENSEARCH_VERSION: '2.x' | |
OPENSEARCH_PLUGIN_VERSION: 2.10.0.0 | |
jobs: | |
linux-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Plugin | |
uses: actions/checkout@v2 | |
- name: Checkout OpenSearch Dashboards | |
uses: actions/checkout@v2 | |
with: | |
repository: opensearch-project/Opensearch-Dashboards | |
ref: ${{ env.OPENSEARCH_VERSION }} | |
path: dashboards-visualizations/OpenSearch-Dashboards | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: './dashboards-visualizations/OpenSearch-Dashboards/.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Yarn | |
# Need to use bash to avoid having a windows/linux specific step | |
shell: bash | |
run: | | |
YARN_VERSION=$(node -p "require('./dashboards-visualizations/OpenSearch-Dashboards/package.json').engines.yarn") | |
echo "Installing yarn@$YARN_VERSION" | |
npm i -g yarn@$YARN_VERSION | |
- run: node -v | |
- run: yarn -v | |
- name: Move Gantt Chart to Plugins Dir | |
run: | | |
mv gantt-chart ./dashboards-visualizations/OpenSearch-Dashboards/plugins | |
- name: Plugin Bootstrap | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn osd bootstrap | |
- name: Test | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn test --coverage | |
- name: Upload coverage | |
uses: codecov/codecov-action@v1 | |
with: | |
directory: ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Build Artifact | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn build | |
mv ./build/*.zip ./build/${{ env.PLUGIN_NAME }}-${{ env.OPENSEARCH_PLUGIN_VERSION }}.zip | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: gantt-chart-ubuntu | |
path: ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart/build | |
windows-build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Plugin | |
uses: actions/checkout@v2 | |
# Enable longer filenames for windows | |
- name: Enable longer filenames | |
run: git config --system core.longpaths true | |
- name: Checkout OpenSearch Dashboards | |
uses: actions/checkout@v2 | |
with: | |
repository: opensearch-project/Opensearch-Dashboards | |
ref: ${{ env.OPENSEARCH_VERSION }} | |
path: dashboards-visualizations/OpenSearch-Dashboards | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: './dashboards-visualizations/OpenSearch-Dashboards/.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Yarn | |
# Need to use bash to avoid having a windows/linux specific step | |
shell: bash | |
run: | | |
YARN_VERSION=$(node -p "require('./dashboards-visualizations/OpenSearch-Dashboards/package.json').engines.yarn") | |
echo "Installing yarn@$YARN_VERSION" | |
npm i -g yarn@$YARN_VERSION | |
- run: node -v | |
- run: yarn -v | |
- name: Move Gantt Chart to Plugins Dir | |
run: | | |
mv gantt-chart ./dashboards-visualizations/OpenSearch-Dashboards/plugins | |
- name: Plugin Bootstrap | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn osd bootstrap | |
- name: Test | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn test | |
- name: Build Artifact | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn build | |
mv ./build/*.zip ./build/${{ env.PLUGIN_NAME }}-${{ env.OPENSEARCH_PLUGIN_VERSION }}.zip | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: gantt-chart-windows | |
path: ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart/build | |
macos-build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Plugin | |
uses: actions/checkout@v2 | |
- name: Checkout OpenSearch Dashboards | |
uses: actions/checkout@v2 | |
with: | |
repository: opensearch-project/Opensearch-Dashboards | |
ref: ${{ env.OPENSEARCH_VERSION }} | |
path: dashboards-visualizations/OpenSearch-Dashboards | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: './dashboards-visualizations/OpenSearch-Dashboards/.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install Yarn | |
# Need to use bash to avoid having a windows/linux specific step | |
shell: bash | |
run: | | |
YARN_VERSION=$(node -p "require('./dashboards-visualizations/OpenSearch-Dashboards/package.json').engines.yarn") | |
echo "Installing yarn@$YARN_VERSION" | |
npm i -g yarn@$YARN_VERSION | |
- run: node -v | |
- run: yarn -v | |
- name: Move Gantt Chart to Plugins Dir | |
run: | | |
mv gantt-chart ./dashboards-visualizations/OpenSearch-Dashboards/plugins | |
- name: Plugin Bootstrap | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn osd bootstrap | |
- name: Test | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn test | |
- name: Build Artifact | |
run: | | |
cd ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart | |
yarn build | |
mv ./build/*.zip ./build/${{ env.PLUGIN_NAME }}-${{ env.OPENSEARCH_PLUGIN_VERSION }}.zip | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: gantt-chart-macos | |
path: ./dashboards-visualizations/OpenSearch-Dashboards/plugins/gantt-chart/build | |