Skip to content

Commit

Permalink
Adding gh-actions workflows (#995)
Browse files Browse the repository at this point in the history
* Adding gh-actions workflows

* Removing travis

* Handle tags also
  • Loading branch information
riknoll authored Jan 27, 2021
1 parent faae713 commit bd0cf05
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 9 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/pxt-buildmain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: pxt-buildmain

on:
push:
branches:
- 'master'
- 'main'
create:

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
sudo apt-get install xvfb
sudo npm install -g pxt
npm install
- name: pxt ci
run: |
pxt ci
env:
CROWDIN_KEY: ${{ secrets.CROWDIN_KEY }}
PXT_ACCESS_TOKEN: ${{ secrets.PXT_ACCESS_TOKEN }}
PXT_RELEASE_REPO: ${{ secrets.PXT_RELEASE_REPO }}
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
CHROME_BIN: chromium-browser
DISPLAY: :99.0
CI: true
31 changes: 31 additions & 0 deletions .github/workflows/pxt-buildpr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: pxt-buildpr

on: [pull_request]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
sudo apt-get install xvfb
sudo npm install -g pxt
npm install
- name: pxt ci
run: |
pxt ci
env:
CHROME_BIN: chromium-browser
DISPLAY: :99.0
CI: true
39 changes: 39 additions & 0 deletions .github/workflows/pxt-buildpush.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: pxt-buildpush

on:
push:
# main/master has its own build that includes the crowdin key
branches-ignore:
- 'main'
- 'master'

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
sudo apt-get install xvfb
sudo npm install -g pxt
npm install
- name: pxt ci
run: |
pxt ci
env:
PXT_ACCESS_TOKEN: ${{ secrets.PXT_ACCESS_TOKEN }}
PXT_RELEASE_REPO: ${{ secrets.PXT_RELEASE_REPO }}
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
CHROME_BIN: chromium-browser
DISPLAY: :99.0
CI: true
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit bd0cf05

Please sign in to comment.