chore: don't set aws region
This commit is contained in:
parent
7fe793ebc1
commit
f9318439ed
3 changed files with 30 additions and 6 deletions
|
|
@ -43,9 +43,6 @@ matrix:
|
||||||
ARCH: amd64
|
ARCH: amd64
|
||||||
ARCH_ID: amd64
|
ARCH_ID: amd64
|
||||||
INSTANCE_TYPE: AX42
|
INSTANCE_TYPE: AX42
|
||||||
# - PLATFORM: opensuse-155
|
|
||||||
# PLATFORM_ID: suse155
|
|
||||||
# ARCH: arm64
|
|
||||||
- PLATFORM: alpine-320
|
- PLATFORM: alpine-320
|
||||||
PLATFORM_ID: alpine320
|
PLATFORM_ID: alpine320
|
||||||
ARCH: arm64
|
ARCH: arm64
|
||||||
|
|
@ -100,6 +97,11 @@ steps:
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/arch: "${ARCH}"
|
kubernetes.io/arch: "${ARCH}"
|
||||||
node.kubernetes.io/instance-type: "${INSTANCE_TYPE}"
|
node.kubernetes.io/instance-type: "${INSTANCE_TYPE}"
|
||||||
|
tolerations:
|
||||||
|
- key: "CI"
|
||||||
|
operator: "Equal"
|
||||||
|
value: "true"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
|
||||||
- name: Check if files for R version already exist in s3
|
- name: Check if files for R version already exist in s3
|
||||||
environment:
|
environment:
|
||||||
|
|
@ -107,8 +109,8 @@ steps:
|
||||||
from_secret: B2_APPLICATION_KEY_ID
|
from_secret: B2_APPLICATION_KEY_ID
|
||||||
AWS_SECRET_ACCESS_KEY:
|
AWS_SECRET_ACCESS_KEY:
|
||||||
from_secret: B2_APPLICATION_KEY
|
from_secret: B2_APPLICATION_KEY
|
||||||
AWS_REGION: s3.eu-central-003
|
# AWS_REGION: s3.eu-central-003
|
||||||
AWS_ENDPOINT: s3.eu-central-003.backblazeb2.com
|
AWS_ENDPOINT_URL: https://s3.eu-central-003.backblazeb2.com
|
||||||
image: alpine:3.21
|
image: alpine:3.21
|
||||||
commands:
|
commands:
|
||||||
- apk add -q --no-cache aws-cli
|
- apk add -q --no-cache aws-cli
|
||||||
|
|
@ -119,6 +121,11 @@ steps:
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/arch: "${ARCH}"
|
kubernetes.io/arch: "${ARCH}"
|
||||||
node.kubernetes.io/instance-type: "${INSTANCE_TYPE}"
|
node.kubernetes.io/instance-type: "${INSTANCE_TYPE}"
|
||||||
|
tolerations:
|
||||||
|
- key: "CI"
|
||||||
|
operator: "Equal"
|
||||||
|
value: "true"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
|
||||||
# ref: https://github.com/woodpecker-ci/woodpecker/discussions/2721
|
# ref: https://github.com/woodpecker-ci/woodpecker/discussions/2721
|
||||||
- name: Build
|
- name: Build
|
||||||
|
|
@ -213,6 +220,11 @@ steps:
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/arch: "${ARCH}"
|
kubernetes.io/arch: "${ARCH}"
|
||||||
node.kubernetes.io/instance-type: "${INSTANCE_TYPE}"
|
node.kubernetes.io/instance-type: "${INSTANCE_TYPE}"
|
||||||
|
tolerations:
|
||||||
|
- key: "CI"
|
||||||
|
operator: "Equal"
|
||||||
|
value: "true"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
docker:
|
docker:
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -1,4 +1,4 @@
|
||||||
PLATFORMS := ubuntu-2004 ubuntu-2204 ubuntu-2404 debian-10 debian-11 debian-12 centos-7 centos-8 rhel-9 opensuse-155 fedora-38 fedora-39 fedora-40 alpine-320
|
PLATFORMS := ubuntu-2004 ubuntu-2204 ubuntu-2404 debian-10 debian-11 debian-12 centos-7 centos-8 rhel-9 opensuse-155 fedora-38 fedora-39 fedora-40 alpine-320 alpine-321
|
||||||
SLS_BINARY ?= ./node_modules/serverless/bin/serverless.js
|
SLS_BINARY ?= ./node_modules/serverless/bin/serverless.js
|
||||||
|
|
||||||
deps:
|
deps:
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,18 @@ services:
|
||||||
image: r-builds:alpine-320
|
image: r-builds:alpine-320
|
||||||
volumes:
|
volumes:
|
||||||
- /tmp/alpine-320:/tmp/output/alpine-320
|
- /tmp/alpine-320:/tmp/output/alpine-320
|
||||||
|
alpine-321:
|
||||||
|
command: ./build.sh
|
||||||
|
environment:
|
||||||
|
- R_VERSION=${R_VERSION}
|
||||||
|
- R_INSTALL_PATH=${R_INSTALL_PATH}
|
||||||
|
- LOCAL_STORE=/tmp/output
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile.alpine-321
|
||||||
|
image: r-builds:alpine-321
|
||||||
|
volumes:
|
||||||
|
- /tmp/alpine-320:/tmp/output/alpine-320
|
||||||
debian-10:
|
debian-10:
|
||||||
command: ./build.sh
|
command: ./build.sh
|
||||||
environment:
|
environment:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue