From bd0cf0569337f176f987e6d7bb9ab1ca38fe9d72 Mon Sep 17 00:00:00 2001 From: Richard Knoll Date: Wed, 27 Jan 2021 14:57:14 -0800 Subject: [PATCH] Adding gh-actions workflows (#995) * Adding gh-actions workflows * Removing travis * Handle tags also --- .github/workflows/pxt-buildmain.yml | 40 +++++++++++++++++++++++++++++ .github/workflows/pxt-buildpr.yml | 31 ++++++++++++++++++++++ .github/workflows/pxt-buildpush.yml | 39 ++++++++++++++++++++++++++++ .travis.yml | 9 ------- 4 files changed, 110 insertions(+), 9 deletions(-) create mode 100644 .github/workflows/pxt-buildmain.yml create mode 100644 .github/workflows/pxt-buildpr.yml create mode 100644 .github/workflows/pxt-buildpush.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/pxt-buildmain.yml b/.github/workflows/pxt-buildmain.yml new file mode 100644 index 00000000..60c501d2 --- /dev/null +++ b/.github/workflows/pxt-buildmain.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/pxt-buildpr.yml b/.github/workflows/pxt-buildpr.yml new file mode 100644 index 00000000..22907593 --- /dev/null +++ b/.github/workflows/pxt-buildpr.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/pxt-buildpush.yml b/.github/workflows/pxt-buildpush.yml new file mode 100644 index 00000000..cf699974 --- /dev/null +++ b/.github/workflows/pxt-buildpush.yml @@ -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 \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4d047d07..00000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: node_js -node_js: - - "8.9.0" -script: - - "node node_modules/pxt-core/built/pxt.js travis" -sudo: false -cache: - directories: - - node_modules