diff --git a/.github/workflows/pxt-buildmain.yml b/.github/workflows/pxt-buildmain.yml new file mode 100644 index 0000000..6af4f37 --- /dev/null +++ b/.github/workflows/pxt-buildmain.yml @@ -0,0 +1,39 @@ +name: pxt-buildmain + +on: + push: + branches: + - 'master' + - 'main' + +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 travis + run: | + pxt travis + 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 0000000..a164e6e --- /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 travis + run: | + pxt travis + 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 0000000..517fe3b --- /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 travis + run: | + pxt travis + 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 765b7fd..0000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: node_js -node_js: - - "8.9.4" -script: - - "node node_modules/pxt-core/built/pxt.js travis" -sudo: false -notifications: - email: - - kindscript@microsoft.com -cache: - directories: - - node_modules -