Disable i686 and armv6l pipelines for now
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/tag Build is passing Details
continuous-integration/drone Build is passing Details
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Alex 2021-10-25 15:25:01 +02:00
parent df8a4068d9
commit f6ebcbc7a7
No known key found for this signature in database
GPG Key ID: EDABF9711E244EB1
1 changed files with 210 additions and 210 deletions

View File

@ -276,115 +276,115 @@ trigger:
node: node:
nix: 1 nix: 1
--- # ---
kind: pipeline # kind: pipeline
type: docker # type: docker
name: release-linux-i686 # name: release-linux-i686
#
volumes: # volumes:
- name: nix_store # - name: nix_store
host: # host:
path: /var/lib/drone/nix # path: /var/lib/drone/nix
- name: nix_config # - name: nix_config
temp: {} # temp: {}
#
environment: # environment:
TARGET: i686-unknown-linux-musl # TARGET: i686-unknown-linux-musl
#
steps: # steps:
- name: setup nix # - name: setup nix
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
commands: # commands:
- cp nix/nix.conf /etc/nix/nix.conf # - cp nix/nix.conf /etc/nix/nix.conf
- nix-build --no-build-output --no-out-link shell.nix -A inputDerivation # - nix-build --no-build-output --no-out-link shell.nix -A inputDerivation
#
- name: build # - name: build
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
commands: # commands:
- nix-build --no-build-output --argstr target $TARGET --arg release true --argstr git_version $DRONE_COMMIT # - nix-build --no-build-output --argstr target $TARGET --arg release true --argstr git_version $DRONE_COMMIT
#
- name: integration # - name: integration
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
commands: # commands:
- nix-shell --run ./script/test-smoke.sh || (cat /tmp/garage.log; false) # - nix-shell --run ./script/test-smoke.sh || (cat /tmp/garage.log; false)
#
- name: update cache # - name: update cache
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
environment: # environment:
AWS_ACCESS_KEY_ID: # AWS_ACCESS_KEY_ID:
from_secret: cache_aws_access_key_id # from_secret: cache_aws_access_key_id
AWS_SECRET_ACCESS_KEY: # AWS_SECRET_ACCESS_KEY:
from_secret: cache_aws_secret_access_key # from_secret: cache_aws_secret_access_key
NIX_PRIV_KEY: # NIX_PRIV_KEY:
from_secret: nix_priv_key # from_secret: nix_priv_key
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
commands: # commands:
- (umask 377 && echo $NIX_PRIV_KEY > /etc/nix/signing-key.sec) # - (umask 377 && echo $NIX_PRIV_KEY > /etc/nix/signing-key.sec)
- | # - |
nix copy --to 's3://nix?endpoint=garage.deuxfleurs.fr&region=garage&secret-key=/etc/nix/signing-key.sec' \ # nix copy --to 's3://nix?endpoint=garage.deuxfleurs.fr&region=garage&secret-key=/etc/nix/signing-key.sec' \
$(nix-store -qR --include-outputs \ # $(nix-store -qR --include-outputs \
$(nix-instantiate --argstr target $TARGET --arg release true)) # $(nix-instantiate --argstr target $TARGET --arg release true))
#
- name: push static binary # - name: push static binary
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
environment: # environment:
AWS_ACCESS_KEY_ID: # AWS_ACCESS_KEY_ID:
from_secret: garagehq_aws_access_key_id # from_secret: garagehq_aws_access_key_id
AWS_SECRET_ACCESS_KEY: # AWS_SECRET_ACCESS_KEY:
from_secret: garagehq_aws_secret_access_key # from_secret: garagehq_aws_secret_access_key
commands: # commands:
- nix-shell --arg rust false --arg integration false --run "to_s3" # - nix-shell --arg rust false --arg integration false --run "to_s3"
#
- name: docker build and publish # - name: docker build and publish
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
environment: # environment:
DOCKER_AUTH: # DOCKER_AUTH:
from_secret: docker_auth # from_secret: docker_auth
DOCKER_PLATFORM: "linux/386" # DOCKER_PLATFORM: "linux/386"
CONTAINER_NAME: "dxflrs/386_garage" # CONTAINER_NAME: "dxflrs/386_garage"
HOME: "/kaniko" # HOME: "/kaniko"
commands: # commands:
- mkdir -p /kaniko/.docker # - mkdir -p /kaniko/.docker
- echo $DOCKER_AUTH > /kaniko/.docker/config.json # - echo $DOCKER_AUTH > /kaniko/.docker/config.json
- export CONTAINER_TAG=${DRONE_TAG:-$DRONE_COMMIT} # - export CONTAINER_TAG=${DRONE_TAG:-$DRONE_COMMIT}
- nix-shell --arg rust false --arg integration false --run "to_docker" # - nix-shell --arg rust false --arg integration false --run "to_docker"
#
trigger: # trigger:
event: # event:
- promote # - promote
- cron # - cron
#
node: # node:
nix: 1 # nix: 1
--- ---
kind: pipeline kind: pipeline
@ -486,105 +486,105 @@ trigger:
node: node:
nix: 1 nix: 1
--- # ---
kind: pipeline # kind: pipeline
type: docker # type: docker
name: release-linux-armv6l # name: release-linux-armv6l
#
volumes: # volumes:
- name: nix_store # - name: nix_store
host: # host:
path: /var/lib/drone/nix # path: /var/lib/drone/nix
- name: nix_config # - name: nix_config
temp: {} # temp: {}
#
environment: # environment:
TARGET: armv6l-unknown-linux-musleabihf # TARGET: armv6l-unknown-linux-musleabihf
#
steps: # steps:
- name: setup nix # - name: setup nix
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
commands: # commands:
- cp nix/nix.conf /etc/nix/nix.conf # - cp nix/nix.conf /etc/nix/nix.conf
- nix-build --no-build-output --no-out-link --arg rust false --arg integration false -A inputDerivation # - nix-build --no-build-output --no-out-link --arg rust false --arg integration false -A inputDerivation
#
- name: build # - name: build
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
commands: # commands:
- nix-build --no-build-output --argstr target $TARGET --arg release true --argstr git_version $DRONE_COMMIT # - nix-build --no-build-output --argstr target $TARGET --arg release true --argstr git_version $DRONE_COMMIT
#
- name: update cache # - name: update cache
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
environment: # environment:
AWS_ACCESS_KEY_ID: # AWS_ACCESS_KEY_ID:
from_secret: cache_aws_access_key_id # from_secret: cache_aws_access_key_id
AWS_SECRET_ACCESS_KEY: # AWS_SECRET_ACCESS_KEY:
from_secret: cache_aws_secret_access_key # from_secret: cache_aws_secret_access_key
NIX_PRIV_KEY: # NIX_PRIV_KEY:
from_secret: nix_priv_key # from_secret: nix_priv_key
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
commands: # commands:
- (umask 377 && echo $NIX_PRIV_KEY > /etc/nix/signing-key.sec) # - (umask 377 && echo $NIX_PRIV_KEY > /etc/nix/signing-key.sec)
- | # - |
nix copy --to 's3://nix?endpoint=garage.deuxfleurs.fr&region=garage&secret-key=/etc/nix/signing-key.sec' \ # nix copy --to 's3://nix?endpoint=garage.deuxfleurs.fr&region=garage&secret-key=/etc/nix/signing-key.sec' \
$(nix-store -qR --include-outputs \ # $(nix-store -qR --include-outputs \
$(nix-instantiate --argstr target $TARGET --arg release true)) # $(nix-instantiate --argstr target $TARGET --arg release true))
#
- name: push static binary # - name: push static binary
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
environment: # environment:
AWS_ACCESS_KEY_ID: # AWS_ACCESS_KEY_ID:
from_secret: garagehq_aws_access_key_id # from_secret: garagehq_aws_access_key_id
AWS_SECRET_ACCESS_KEY: # AWS_SECRET_ACCESS_KEY:
from_secret: garagehq_aws_secret_access_key # from_secret: garagehq_aws_secret_access_key
commands: # commands:
- nix-shell --arg integration false --arg rust false --run "to_s3" # - nix-shell --arg integration false --arg rust false --run "to_s3"
#
- name: docker build and publish # - name: docker build and publish
image: nixpkgs/nix:nixos-21.05 # image: nixpkgs/nix:nixos-21.05
volumes: # volumes:
- name: nix_store # - name: nix_store
path: /nix # path: /nix
- name: nix_config # - name: nix_config
path: /etc/nix # path: /etc/nix
environment: # environment:
DOCKER_AUTH: # DOCKER_AUTH:
from_secret: docker_auth # from_secret: docker_auth
DOCKER_PLATFORM: "linux/arm" # DOCKER_PLATFORM: "linux/arm"
CONTAINER_NAME: "dxflrs/arm_garage" # CONTAINER_NAME: "dxflrs/arm_garage"
HOME: "/kaniko" # HOME: "/kaniko"
commands: # commands:
- mkdir -p /kaniko/.docker # - mkdir -p /kaniko/.docker
- echo $DOCKER_AUTH > /kaniko/.docker/config.json # - echo $DOCKER_AUTH > /kaniko/.docker/config.json
- export CONTAINER_TAG=${DRONE_TAG:-$DRONE_COMMIT} # - export CONTAINER_TAG=${DRONE_TAG:-$DRONE_COMMIT}
- nix-shell --arg rust false --arg integration false --run "to_docker" # - nix-shell --arg rust false --arg integration false --run "to_docker"
#
trigger: # trigger:
event: # event:
- promote # - promote
- cron # - cron
#
node: # node:
nix: 1 # nix: 1
--- ---
kind: pipeline kind: pipeline
@ -613,9 +613,9 @@ steps:
depends_on: depends_on:
- release-linux-x86_64 - release-linux-x86_64
- release-linux-i686 #- release-linux-i686
- release-linux-aarch64 - release-linux-aarch64
- release-linux-armv6l #- release-linux-armv6l
trigger: trigger:
event: event: