Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openmodelica/openmodelicabuildscripts
Scripts to build OpenModelica packages on miscellaneous platforms
https://github.com/openmodelica/openmodelicabuildscripts
Last synced: about 1 month ago
JSON representation
Scripts to build OpenModelica packages on miscellaneous platforms
- Host: GitHub
- URL: https://github.com/openmodelica/openmodelicabuildscripts
- Owner: OpenModelica
- Created: 2014-11-20T12:56:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-04-10T15:29:42.000Z (9 months ago)
- Last Synced: 2024-04-28T07:35:57.287Z (9 months ago)
- Language: Shell
- Size: 3.42 MB
- Stars: 3
- Watchers: 7
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenModelicaBuildScripts
A collection of scripts that can build OpenModelica packages on miscellaneous platforms
## Docker Images
Docker images are hosted on [docker.openmodelica.org](docker.openmodelica.org) and need to
be uploaded manually.### Example
To add a new image to [docker.openmodelica.org](docker.openmodelica.org)
the image needs to be build, tagged correctly and then pushed to the server.For example for [Dockerfile.build-deps-cmake-1.16.3](./docker/Dockerfile.build-deps-cmake-1.16.3)
one would run:```bash
docker build --tag build-deps-cmake:v1.16.3 -f Dockerfile.build-deps-cmake-1.16.3 .
docker tag build-deps-cmake:v1.16.3 docker.openmodelica.org/build-deps-cmake:v1.16.3
docker push docker.openmodelica.org/build-deps-cmake:v1.16.3
```