Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Move build to GitHub actions (#1193)
Browse files Browse the repository at this point in the history
* github action tests

* fix indent

* fix xvfb action

* trigger

* change to @default-branch

* update branch names

* update linux ver

* fix formatting

* remove tags and develop triggers

* move runs-on

* add os target echo

* change to build on any push

* remove echo

* fix linux if

* fix os ifs

* add ' to ifs

* fix brew install

* remove tests for win

* name steps, add typescript install

* fix syntax

* fix formatting

* fix tests

* add missing '

* change to trusty

* change to ubuntu-14.04.6

* revert to 5948525

* remove gulp install

* remove typescript install

* add gulp install back

* add triggers

* add actions branch trigger

* add package

* fix indents

* add artifact publishing

* test package

* fix matrix

* typo

* fix version

* fix version

* fix export path

* test package dir, change to ubuntu

* test  ubuntu

* fix tag ref, change to main branch

* test file path

* test release upload

* add environment

* remove arduino install for deploy, add publish

* fix conditional for publishing

* update enviroment

* remove travis.yml

* fix tag for stale issue workflow
  • Loading branch information
adiazulay authored Feb 4, 2021
1 parent 4efe14d commit 595def8
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 90 deletions.
108 changes: 108 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
name: CI-Tests
on:
push:
branches:
- master
- develop
tags:
- v*
pull_request:
branches:
- master
- develop


jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]

steps:
- name: checkout
uses: actions/checkout@v2
- name: get node
uses: actions/setup-node@v1
with:
node-version: 11.x
- name: linux setup
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0
sleep 3
wget https://downloads.arduino.cc/arduino-1.8.2-linux64.tar.xz -P /home/$USER
tar -xvf /home/$USER/arduino-1.8.2-linux64.tar.xz -C /home/$USER/
sudo ln -s /home/$USER/arduino-1.8.2/arduino /usr/bin/arduino
sudo apt-get update
sudo apt-get install g++-multilib
sudo apt-get install -y build-essential
sudo apt-get install libudev-dev
- name: macos setup
if: ${{ matrix.os == 'macos-latest' }}
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install arduino --cask
- name: preinstall
run: |
npm install -g node-gyp
npm install -g vsce
npm install -g gulp
- name: install
run: npm install
- name: scripts
run: |
gulp tslint
gulp genAikey
vsce package
- name: run tests
if: ${{ matrix.os != 'windows-latest' }}
uses: GabrielBB/xvfb-action@v1
with:
run: npm test --silent

deploy:
needs: build
runs-on: ubuntu-latest
environment: vsix-publishing
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- run: echo "VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- run: echo ${{env.VERSION}}
- name: Checkout
uses: actions/checkout@v2
- name: get node
uses: actions/setup-node@v1
with:
node-version: 11.x
- name: linux setup
run: |
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0
sleep 3
sudo apt-get update
sudo apt-get install g++-multilib
sudo apt-get install -y build-essential
sudo apt-get install libudev-dev
- name: preinstall
run: |
npm install -g node-gyp
npm install -g vsce
npm install -g gulp
- name: install
run: npm install
- name: scripts
run: |
gulp tslint
gulp genAikey
vsce package
- name: upload .vsix to github tag
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.OAUTH_TOKEN }}
file: ${{github.workspace}}/vscode-arduino*.vsix
tag: ${{ github.ref }}
overwrite: true
file_glob: true
- name: publish
if: github.ref == 'refs/tags/[0-9].[0-9].[0-9]'
run: vsce publish -p ${{ secrets.VSCE_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/stale-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
stale-issue-message: 'This issue has been automatically marked as stale because it has no recent activities. It will be closed if no further activity occurs within 3 days. Thank you for your contributions.'
stale-issue-label: 'stale'
days-before-stale: 7
only-labels: 'need more info'
only-labels: 'needs more info'
last-updated-user-type: 'collaborator'
days-before-close: 3
operations-per-run: 150
89 changes: 0 additions & 89 deletions .travis.yml

This file was deleted.

0 comments on commit 595def8

Please sign in to comment.