Skip to content

Commit

Permalink
class7: add files
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassc committed Jun 10, 2024
1 parent 643ce32 commit cafcf06
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
| [Aula 3](./aula_3/README.md) |
| [Aula 4](./aula_4/README.md) |
| [Aula 5](./aula_5/README.md) |
| [Aula 6](./aula_6/README.md) |
| [Aula 7](./aula_7/README.md) |
| [Projeto](./projeto/README.md) |
36 changes: 36 additions & 0 deletions aula_7/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
pipeline {
agent any

stages {
stage('Init') {
steps {
echo 'Initializing..'
echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"
}
}
stage('Test') {
steps {
echo 'Testing..'
echo 'Running pytest..'
}
}
stage('Build') {
steps {
echo 'Building..'
echo 'Running docker build -t sntshk/cotu .'
}
}
stage('Publish') {
steps {
echo 'Publishing..'
echo 'Running docker push..'
}
}
stage('Cleanup') {
steps {
echo 'Cleaning..'
echo 'Running docker rmi..'
}
}
}
}
6 changes: 6 additions & 0 deletions aula_7/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Aula 7

| Paginas |
| ---------------------------------------- |
| [Links](./links_aula.md) |
| [Exercícios de fixação](./exercicios.MD) |
1 change: 1 addition & 0 deletions aula_7/exercicios.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Exercícios de fixação
1 change: 1 addition & 0 deletions aula_7/links_aula.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Links

0 comments on commit cafcf06

Please # to comment.