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

build: cleanup #14

Merged
merged 7 commits into from
Feb 6, 2025
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
10 changes: 0 additions & 10 deletions .devcontainer/devcontainer.Dockerfile

This file was deleted.

42 changes: 20 additions & 22 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-in-docker
{
"name": "Docker in Docker",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"build": {
// Path is relative to the devcontainer.json file.
"dockerfile": "devcontainer.Dockerfile"
},

"name": "PLCC Dev Container",
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"enableNonRootDocker": "true",
"moby": "false"
}
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/devcontainers-extra/features/pdm:2": {}
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pdm install"

// Configure tool-specific properties.
// "customizations": {},
"customizations": {
"vscode": {
"settings":
{
"plantuml.server": "https://www.plantuml.com/plantuml",
"plantuml.render": "PlantUMLServer",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"python.testing.pytestArgs": [
"."
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}
}
}

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
Expand Down
65 changes: 4 additions & 61 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,64 +1,7 @@
Thank you for your help! Please read the following before contributing to
this project.

## Legal
The authors of this PR...

This project and its contents are licensed under GPL-3.0 or greater.
See the LICENSE file at the root of this project. Your contributions must
therefore also be licensed under GPL-3.0 or greater.
- [ ] Sign off on the [DCO](https://developercertificate.org/).
- [ ] License their changes under [GPL-3.0 or greater license](https://www.gnu.org/licenses/gpl-3.0-standalone.html).

Also by contributing to this project, you are signing off on the
[Developer Certificate of Origin (DCO)](https://developercertificate.org/)
asserting that your contributions may legally be licensed under GPL-3.0
or greater. If you do not want to sign off on the DCO, close or delete
this PR.

## Instructions

Make all the changes you want. When you are done, request a review.
Work with the maintainer to complete your contribution.
Complete the template below to your best ability.

---

# Template for Final Squash Commit Message

```
Make sure your subject line follows Conventional Commits.
Remember `feat:` trumps `fix:` and add an `!` if it contains a breaking change.
Delete any section that is not needed.

## BREAKING CHANGES

Non backwards compatible changes.

* #Issue-number - Blah blah blah

## Deprecations

Things that will disappear in future releases.

* #Issue-number - Blah blah blah

## Features

New functionality.
New functionality containing non-backwards compatible functionality are also listed above.

* #Issue-number - Blah blah blah

## Fixes

Bug fixes for existing functionality.
Bug fixes containing non-backwards compatible functionality are also listed above.

* #Issue-number - Blah blah blah

---

Those who made this possible:

Co-authored-by: First Last <email>
Co-authored-by: First Last <email>
Co-authored-by: First Last <email>
```
Closes #NUMBER
47 changes: 0 additions & 47 deletions .github/workflows/build.yaml

This file was deleted.

57 changes: 0 additions & 57 deletions .github/workflows/release.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/test-release-candidate.yaml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/test_python-3.9.19_Java-11.0.21-tem.yaml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/workflows/test_python-max_java-max.yaml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# See https://pdm-project.org/latest/usage/project/#working-with-version-control
.pdm-python
.pdm-build/

# This is created by bin/test/languages.bash. But should not be committed.
languages/
Expand Down
19 changes: 0 additions & 19 deletions .releaserc.yaml

This file was deleted.

Loading