Skip to content

Commit

Permalink
Fix links and actions and sanitize ccfe references.
Browse files Browse the repository at this point in the history
  • Loading branch information
sudilav committed Nov 8, 2024
1 parent 0f1ea1e commit fcfde41
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 110 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand All @@ -43,7 +43,7 @@ jobs:
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
file: ./Dockerfile
file: ./tests/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
96 changes: 0 additions & 96 deletions .gitlab-ci.yml

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ pip install martepy

You can find example for how to use this repository here:

[Simple Example](https://marte21.gitpages.ccfe.ac.uk/public/marte2_python/getting_started.html)
[Simple Example](https://ukaea.github.io/MARTe2-python/getting_started.html)

[Water Tank Example](https://marte21.gitpages.ccfe.ac.uk/public/marte2_python/water_tank.html)
[Water Tank Example](https://ukaea.github.io/MARTe2-python/water_tank.html)

## Support

For support on using this codebase you can refer to the documentation found here:

[User Documentation](https://marte21.gitpages.ccfe.ac.uk/public/marte2_python/)
[User Documentation](https://ukaea.github.io/MARTe2-python/)

If you have found a bug or have a feature request then please submit an issue within this repository.

Expand Down
6 changes: 2 additions & 4 deletions docs/source/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ Getting Started

First, clone and install this repository and it's dependencies::

$ git clone https://git.ccfe.ac.uk/marte21/public/marte2_python.git
$ cd marte2_python
$ pip install ./
$ pip install martepy


.. note::
Expand Down Expand Up @@ -178,4 +176,4 @@ Next steps:
- Review the `water tank example <./water_tank.html>`_.
- It is encouraged to read up on the `simulation framework <./simulation.html>`_.
- Alot of operational functions and configurations were ignored in this example, the default set up is usually adequate for an application but you may want to review the other `examples available <https://git.ccfe.ac.uk/marte21/public/marte2_python/-/tree/develop/examples>`_.
- Alot of operational functions and configurations were ignored in this example, the default set up is usually adequate for an application but you may want to review the other `examples available <https://github.com/ukaea/MARTe2-python/tree/main/examples>`_.
2 changes: 1 addition & 1 deletion docs/source/related.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ See also
- the `MARTe2 source`_, the `MARTe2 components source`_ and the `MARTe2 docs`_
- the `MARTe2 2019 users meeting`_ and the `training material repository`_

.. _`the source`: https://git.ccfe.ac.uk/marte21/public/marte2_python
.. _`the source`: https://github.com/ukaea/MARTe2-python
.. _`MARTe2 source`: https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2
.. _`MARTe2 components source`: https://vcis-gitlab.f4e.europa.eu/aneto/MARTe2-components
.. _`MARTe2 docs`: https://vcis.f4e.europa.eu/marte2-docs/master/html
Expand Down
2 changes: 1 addition & 1 deletion docs/source/support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ For more general questions on the implementation, contact any of
.. _`MARTe Discord server`: https://discord.gg/anSXWtnprW
.. _`Edward Jones`: mailto:edward.jones1@ukaea.uk
.. _`Hudson Baker`: mailto:hudson.baker@ukaea.uk
.. _`contributors list on GitLab`: https://git.ccfe.ac.uk/marte21/public/marte2_python/-/graphs/main
.. _`contributors list on GitLab`: https://github.com/ukaea/MARTe2-python/graphs/contributors
.. _`Adam Stephen`: mailto:adam.stephen@ukaea.uk
2 changes: 1 addition & 1 deletion docs/source/water_tank.rst
Original file line number Diff line number Diff line change
Expand Up @@ -234,4 +234,4 @@ So great! We have used python to generate a MARTe2 configuration and then execut
Next steps:

- It is encouraged to read up on the `simulation framework <./simulation.html>`_.
- Alot of operational functions and configurations were ignored in this example, the default set up is usually adequate for an application but you may want to review the other `examples available <https://git.ccfe.ac.uk/marte21/public/marte2_python/-/tree/develop/examples>`_.
- Alot of operational functions and configurations were ignored in this example, the default set up is usually adequate for an application but you may want to review the other `examples available <https://github.com/ukaea/MARTe2-python/tree/main/examples>`_.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "martepy"
version = "1.0.0"
description = """Python modules that wrap MARTe2 classes and objects into python classes for automation and simplification purposes of developing MARTe2 applications. This also provides tools that are useful for working with MARTe2."""
description = """This repository provides python classes which represent MARTe2 GAMs, DataSources and applications. Alongside this it provides useful frameworks for debugging and developing applications with MARTe2."""
readme = "README.md"
authors = [
{ name = "Edward Jones", email = "edward.jones1@ukaea.uk" }
Expand Down

0 comments on commit fcfde41

Please sign in to comment.