Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
tty2xy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Paul
tty2xy
Compare revisions
main to ebd04639c5e4473d2269fbecf16ffaad6335baf6
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
paul/tty2xy
Select target project
No results found
ebd04639c5e4473d2269fbecf16ffaad6335baf6
Select Git revision
Branches
add-gitlab-ci
main
2 results
Swap
Target
leo/tty2xy
Select target project
leo/tty2xy
paul/tty2xy
2 results
main
Select Git revision
Branches
main
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (6)
add ci and gitignore
· d259f3dc
Paul
authored
2 years ago
d259f3dc
fix ci
· 97f79877
Paul
authored
2 years ago
97f79877
fix ci
· d18bf298
Paul
authored
2 years ago
d18bf298
add missing dependency
· 7f5140a6
Paul
authored
2 years ago
7f5140a6
add missing dpendency 2
· 44c8b747
Paul
authored
2 years ago
44c8b747
install libpthread-stubs0-dev
· ebd04639
Paul
authored
2 years ago
ebd04639
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
.gitlab-ci.yml
+9
-0
9 additions, 0 deletions
.gitlab-ci.yml
Makefile
+1
-1
1 addition, 1 deletion
Makefile
with
11 additions
and
1 deletion
.gitignore
0 → 100644
View file @
ebd04639
a.out
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
0 → 100644
View file @
ebd04639
image
:
debian:latest
before_script
:
-
apt update > /dev/null
-
apt install -y build-essential make libglu1-mesa-dev freeglut3-dev libpthread-stubs0-dev > /dev/null
build_sim
:
script
:
-
make sim
This diff is collapsed.
Click to expand it.
Makefile
View file @
ebd04639
...
...
@@ -24,4 +24,4 @@ flash: $(TARGET).hex
avrdude
-p
$(
MCU
)
-P
$(
PORT
)
-c
avrisp
-b
19200
-U
flash:w:
$(
TARGET
)
.hex
sim
:
gcc main.c gol.c draw.c helpMath.c sim.c demo.c
-g
-D
SIMULATION
-lglut
-lGL
-lm
-lGLU
-Werror
-Wextra
\ No newline at end of file
gcc main.c gol.c draw.c helpMath.c sim.c
-g
-D
SIMULATION
-lglut
-lGL
-lm
-lGLU
-Werror
-Wextra
This diff is collapsed.
Click to expand it.