Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove openSUSE 15.4 for EOL #214

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PLATFORMS := ubuntu-2004 ubuntu-2204 ubuntu-2404 debian-10 debian-11 debian-12 centos-7 centos-8 rhel-9 opensuse-154 opensuse-155 fedora-38 fedora-39
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
SLS_BINARY ?= ./node_modules/serverless/bin/serverless.js

deps:
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ R binaries are built for the following Linux operating systems:
- Debian 10, 11, 12
- CentOS 7
- Red Hat Enterprise Linux 7, 8, 9
- openSUSE 15.4
- openSUSE 15.5
- SUSE Linux Enterprise 15 SP4
- SUSE Linux Enterprise 15 SP5
- Fedora 38, 39

Expand Down Expand Up @@ -143,10 +141,6 @@ sudo yum install R-${R_VERSION}-1-1.x86_64.rpm

Download the rpm package:
```bash
# openSUSE 15.4 / SLES 15 SP4
curl -O https://cdn.posit.co/r/opensuse-154/pkgs/R-${R_VERSION}-1-1.x86_64.rpm


# openSUSE 15.5 / SLES 15 SP5
curl -O https://cdn.posit.co/r/opensuse-155/pkgs/R-${R_VERSION}-1-1.x86_64.rpm
```
Expand Down
103 changes: 0 additions & 103 deletions builder/Dockerfile.opensuse-154

This file was deleted.

12 changes: 0 additions & 12 deletions builder/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,18 +119,6 @@ services:
image: r-builds:opensuse-155
volumes:
- ./integration/tmp:/tmp/output
opensuse-154:
command: ./build.sh
environment:
- R_VERSION=${R_VERSION}
- R_INSTALL_PATH=${R_INSTALL_PATH}
- LOCAL_STORE=/tmp/output
build:
context: .
dockerfile: Dockerfile.opensuse-154
image: r-builds:opensuse-154
volumes:
- ./integration/tmp:/tmp/output
fedora-38:
command: ./build.sh
environment:
Expand Down
100 changes: 0 additions & 100 deletions builder/package.opensuse-154

This file was deleted.

14 changes: 0 additions & 14 deletions serverless-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,20 +269,6 @@ rBuildsBatchJobDefinitionOpensuse155:
Image: "#{AWS::AccountId}.dkr.ecr.#{AWS::Region}.amazonaws.com/r-builds:opensuse-155"
Timeout:
AttemptDurationSeconds: 7200
rBuildsBatchJobDefinitionOpensuse154:
Type: AWS::Batch::JobDefinition
Properties:
Type: container
ContainerProperties:
Command:
- ./build.sh
Vcpus: 4
Memory: 4096
JobRoleArn:
"Fn::GetAtt": [ rBuildsEcsTaskIamRole, Arn ]
Image: "#{AWS::AccountId}.dkr.ecr.#{AWS::Region}.amazonaws.com/r-builds:opensuse-154"
Timeout:
AttemptDurationSeconds: 7200
rBuildsBatchJobDefinitionFedora38:
Type: AWS::Batch::JobDefinition
Properties:
Expand Down
4 changes: 1 addition & 3 deletions serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,11 @@ provider:
Ref: rBuildsBatchJobDefinitionRhel9
JOB_DEFINITION_ARN_opensuse_155:
Ref: rBuildsBatchJobDefinitionOpensuse155
JOB_DEFINITION_ARN_opensuse_154:
Ref: rBuildsBatchJobDefinitionOpensuse154
JOB_DEFINITION_ARN_fedora_38:
Ref: rBuildsBatchJobDefinitionFedora38
JOB_DEFINITION_ARN_fedora_39:
Ref: rBuildsBatchJobDefinitionFedora39
SUPPORTED_PLATFORMS: ubuntu-2004,ubuntu-2204,ubuntu-2404,debian-10,debian-11,debian-12,centos-7,centos-8,rhel-9,opensuse-154,opensuse-155,fedora-38,fedora-39
SUPPORTED_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

functions:
queueBuilds:
Expand Down
8 changes: 0 additions & 8 deletions test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,6 @@ services:
- R_VERSION=${R_VERSION}
volumes:
- ../:/r-builds
opensuse-154:
image: opensuse/leap:15.4
command: /r-builds/test/test-zypper.sh
environment:
- OS_IDENTIFIER=opensuse-154
- R_VERSION=${R_VERSION}
volumes:
- ../:/r-builds
fedora-38:
image: fedora:38
command: /r-builds/test/test-yum.sh
Expand Down
Loading