-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Merge #7444
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
base: master
Are you sure you want to change the base?
Merge #7444
Conversation
This updates the Base developer access RPC to mainnet.base.org.
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
Create webpack.yml
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Create ada.yml
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Create terraform.yml
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Nodoubtz patch 1
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
Update validate_json.yml
Signed-off-by: Nodoubtz <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
Signed-off-by: Nodoubtz <[email protected]>
You successfully submitted a PR! Due to the amount of PRs coming in: we will only look at PRs that the CI is happy with. We can also not hold your hand getting the CI green - just look how others that where merged did it and RTFM. So as long as there is any CI check that reports an error - no human will look at this. You might be able to ask for some support after supporting the project - e.g. by sending funds to lists.eth. When you fixed things after a requested change - then you also need to (re-)request a review. |
Co-authored-by: Copilot <[email protected]> Signed-off-by: Nodoubtz <[email protected]>
This pull request introduces a development container configuration and a GitHub Actions workflow for building Ada projects using the GNAT toolchain. These changes aim to streamline development and CI/CD processes.
Development Environment Setup:
.devcontainer/1devcontainer.json
: Added a development container configuration using themcr.microsoft.com/devcontainers/universal:2
image to standardize the development environment..devcontainer/devcontainer.json
: Added a duplicate development container configuration for consistency across the project.Continuous Integration Workflow:
.github/workflows/ada.yml
: Created a new GitHub Actions workflow named "Ada (GNAT)" to build Ada projects. This includes setting up the GNAT toolchain onubuntu-latest
runners and usinggprbuild
for project compilation.This pull request introduces a development container configuration and a new GitHub Actions workflow for building Ada projects. The most important changes include adding JSON files for the development container setup and creating a workflow to automate Ada project builds.Development container setup:
.devcontainer/1devcontainer.json
: Added a development container configuration with the universal imagemcr.microsoft.com/devcontainers/universal:2
..devcontainer/devcontainer.json
: Added a second development container configuration identical to1devcontainer.json
, using the universal image.GitHub Actions workflow:
.github/workflows/ada.yml
: Added a new workflow named "Ada (GNAT)" to automate builds for Ada projects. It runs onubuntu-latest
, installs the GNAT toolchain, and builds Ada projects usinggprbuild
.