From 88b08c5387faafb13dbd7b83f7d95b23b3aae82d Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Tue, 28 Jan 2020 18:37:38 -0800 Subject: [PATCH] mac build bots --- .github/workflows/chromium-mac.yml | 32 ++++++++++++++++++++++++++++++ .github/workflows/firefox-mac.yml | 32 ++++++++++++++++++++++++++++++ .github/workflows/webkit-mac.yml | 32 ++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+) create mode 100644 .github/workflows/chromium-mac.yml create mode 100644 .github/workflows/firefox-mac.yml create mode 100644 .github/workflows/webkit-mac.yml diff --git a/.github/workflows/chromium-mac.yml b/.github/workflows/chromium-mac.yml new file mode 100644 index 0000000000..c807de2f5c --- /dev/null +++ b/.github/workflows/chromium-mac.yml @@ -0,0 +1,32 @@ +name: Chromium Mac Tests + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + + runs-on: macos + + strategy: + matrix: + node-version: [12.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, and test + run: | + npm install + npm run ctest + env: + CI: true diff --git a/.github/workflows/firefox-mac.yml b/.github/workflows/firefox-mac.yml new file mode 100644 index 0000000000..2887ef4760 --- /dev/null +++ b/.github/workflows/firefox-mac.yml @@ -0,0 +1,32 @@ +name: Firefox Mac Tests + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + + runs-on: macos + + strategy: + matrix: + node-version: [12.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, and test + run: | + npm install + npm run ftest + env: + CI: true diff --git a/.github/workflows/webkit-mac.yml b/.github/workflows/webkit-mac.yml new file mode 100644 index 0000000000..5e96bffc32 --- /dev/null +++ b/.github/workflows/webkit-mac.yml @@ -0,0 +1,32 @@ +name: WebKit Mac Tests + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + + runs-on: macos + + strategy: + matrix: + node-version: [12.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, and test + run: | + npm install + npm run wtest + env: + CI: true