Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4a54e91

Browse files
committedFeb 4, 2020
Remove 32 bit arm builds from CI
1 parent b30aefc commit 4a54e91

File tree

1 file changed

+0
-148
lines changed

1 file changed

+0
-148
lines changed
 

‎.drone.yml

Lines changed: 0 additions & 148 deletions
Original file line numberDiff line numberDiff line change
@@ -329,151 +329,3 @@ steps:
329329
from_secret: gcs-token
330330
when:
331331
event: tag
332-
333-
---
334-
kind: pipeline
335-
type: docker
336-
name: arm:linux
337-
338-
platform:
339-
arch: arm
340-
341-
steps:
342-
- name: cache:restore
343-
image: node:12
344-
commands:
345-
- apt update && apt install -y build-essential git libsecret-1-dev libx11-dev libxkbfile-dev
346-
- ./scripts/cacher.sh
347-
348-
- name: lint
349-
image: node:12
350-
commands:
351-
- yarn lint
352-
353-
- name: test
354-
image: node:12
355-
commands:
356-
- yarn test
357-
358-
- name: build
359-
image: node:12
360-
commands:
361-
- apt update && apt install -y build-essential git libsecret-1-dev libx11-dev libxkbfile-dev
362-
- timeout 50m ./scripts/ci.bash || echo 'Timed out or failed; continuing to preserve cache for the next run'
363-
364-
- name: cache:package
365-
image: node:12
366-
commands:
367-
- ./scripts/cacher.sh
368-
when:
369-
event: push
370-
371-
- name: cache:push
372-
image: plugins/gcs
373-
settings:
374-
source: cache-upload/
375-
target: codesrv-ci.cdr.sh
376-
token:
377-
from_secret: gcs-token
378-
when:
379-
event: push
380-
381-
- name: test:build
382-
image: node:12
383-
failure: ignore
384-
commands:
385-
- yarn test:build
386-
387-
# - name: publish:github
388-
# image: plugins/github-release
389-
# settings:
390-
# api_key:
391-
# from_secret: github_token
392-
# files: release/*.tar.gz
393-
# draft: true
394-
# overwrite: true
395-
# title: ${DRONE_TAG}
396-
# when:
397-
# event: tag
398-
399-
# - name: publish:docker
400-
# image: plugins/docker
401-
# settings:
402-
# username:
403-
# from_secret: docker_user
404-
# password:
405-
# from_secret: docker_pass
406-
# repo: codercom/code-server
407-
# dockerfile: scripts/ci.dockerfile
408-
# tags:
409-
# - ${DRONE_TAG}-arm
410-
# when:
411-
# event: tag
412-
413-
---
414-
kind: pipeline
415-
type: docker
416-
name: arm:alpine
417-
418-
platform:
419-
arch: arm
420-
421-
steps:
422-
- name: cache:restore
423-
image: node:12-alpine
424-
commands:
425-
- apk add libxkbfile-dev libsecret-dev build-base git bash python
426-
- ./scripts/cacher.sh
427-
428-
- name: lint
429-
image: node:12-alpine
430-
commands:
431-
- yarn lint
432-
433-
- name: test
434-
image: node:12-alpine
435-
commands:
436-
- apk add openssl
437-
- yarn test
438-
439-
- name: build
440-
image: node:12-alpine
441-
commands:
442-
- apk add libxkbfile-dev libsecret-dev build-base git bash python
443-
- timeout 50m ./scripts/ci.bash || echo 'Timed out or failed; continuing to preserve cache for the next run'
444-
445-
- name: cache:package
446-
image: node:12-alpine
447-
commands:
448-
- ./scripts/cacher.sh
449-
when:
450-
event: push
451-
452-
- name: cache:push
453-
image: plugins/gcs
454-
settings:
455-
source: cache-upload/
456-
target: codesrv-ci.cdr.sh
457-
token:
458-
from_secret: gcs-token
459-
when:
460-
event: push
461-
462-
- name: test:build
463-
image: node:12-alpine
464-
failure: ignore
465-
commands:
466-
- yarn test:build
467-
468-
# - name: publish:github
469-
# image: plugins/github-release
470-
# failure: ignore
471-
# settings:
472-
# api_key:
473-
# from_secret: github_token
474-
# files: release/*.tar.gz
475-
# draft: true
476-
# overwrite: true
477-
# title: ${DRONE_TAG}
478-
# when:
479-
# event: tag

0 commit comments

Comments
 (0)
Please sign in to comment.