-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28f5f0d
commit 6a81e51
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
# lang | ||
|
||
Aquí vamos a registrar nuestro proyecto de crear un lenguaje de programación. Esto incluye el diseño de lenguaje y la implementación de un compilador. | ||
|
||
## Uso | ||
|
||
Tenemos un `Makefile` con varios comandos: | ||
|
||
- `make build-docker` construye la imagen Docker para el sistema, | ||
- `make run-docker` ejecuta la imagen, | ||
- `make run-tests` ejecuta las pruebas unitarias. | ||
|
||
Los siguientes comandos se deberían ejecutar en la terminal del contenedor, tras haber hecho `make run-docker`: | ||
|
||
- `make install-dependencies` instala las dependencias de Go, | ||
- `make run-tests-ci` ejecuta las pruebas que se van a hacer en la CI de GitHub, | ||
- `make generate-parsing-files` genera el código de ANTLR para el sistema. Se debería ejecutar si la gramática del lenguaje fue modificada o los archivos no existen. El código generado por ANTLR no es rastreado en este repositorio. |