Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
disable circleci and tmp disable debian action
Browse files Browse the repository at this point in the history
  • Loading branch information
gre committed Jan 25, 2020
1 parent fa904d9 commit 8022891
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ workflows:
jobs:
# - ios
# - android
- mac-main-tests
# - mac-main-tests
# - debian-cli-tests

jobs:
Expand Down
58 changes: 29 additions & 29 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,32 +39,32 @@ jobs:
- name: Run tests
run: yarn ci-test-common && npx codecov
timeout-minutes: 60
debian-cli-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@master
with:
node-version: 12.x
- name: Install linux deps
run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev jq
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: |
yarn global add yalc codecov
yarn install --frozen-lockfile
cd cli
yarn --frozen-lockfile
cd -
yarn ci-setup-cli
- name: Run CLI tests
run: yarn ci-test-cli
timeout-minutes: 60
# debian-cli-tests:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - uses: actions/setup-node@master
# with:
# node-version: 12.x
# - name: Install linux deps
# run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev jq
# - name: Get yarn cache
# id: yarn-cache
# run: echo "::set-output name=dir::$(yarn cache dir)"
# - uses: actions/cache@v1
# with:
# path: ${{ steps.yarn-cache.outputs.dir }}
# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
# restore-keys: |
# ${{ runner.os }}-yarn-
# - name: Install dependencies
# run: |
# yarn global add yalc codecov
# yarn install --frozen-lockfile
# cd cli
# yarn --frozen-lockfile
# cd -
# yarn ci-setup-cli
# - name: Run CLI tests
# run: yarn ci-test-cli
# timeout-minutes: 60

0 comments on commit 8022891

Please sign in to comment.