From 716bf771c0a382a7766e4d806d635635597d439b Mon Sep 17 00:00:00 2001 From: Tibor Kiss Date: Thu, 14 Mar 2024 18:35:39 +0100 Subject: [PATCH 1/5] =?UTF-8?q?kit=C3=B6r=C3=B6ltem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- azure-pipelines.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ac246fe..ed6c45f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,5 +23,4 @@ stages: echo "##[debug]Helyi mappa" pwd echo "##[debug]Ez egy olyan üzenet, amit akkor használunk, ha valami hibajavítási üzenetet szeretnénk kiiratni" - env displayName: 'Többsoros' From 87dc41272e7f86c902bac74b705e645534cad5b3 Mon Sep 17 00:00:00 2001 From: Tibor Kiss Date: Thu, 14 Mar 2024 18:41:55 +0100 Subject: [PATCH 2/5] =?UTF-8?q?Felt=C3=A9tel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/alap.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/alap.yaml b/.github/workflows/alap.yaml index 822f278..76730bd 100644 --- a/.github/workflows/alap.yaml +++ b/.github/workflows/alap.yaml @@ -28,9 +28,11 @@ jobs: # Futassunk egy parancsot - name: Egy soros parancsok + if: ${{ github.event_name == 'push' }} run: echo Hello, world! # Futtassunk több parancsot egyben - name: Több soros parancsok + if: ${{ github.event_name == 'pull_request' }} run: | echo "## Ez egy nagyobb rész" echo "## Fájlok listája" From 9b7978305ef927c8ca33b1a67d3b72896e7fc841 Mon Sep 17 00:00:00 2001 From: Tibor Kiss Date: Thu, 14 Mar 2024 18:44:38 +0100 Subject: [PATCH 3/5] ADO --- azure-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ed6c45f..580d97b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,6 +16,7 @@ stages: steps: - script: echo Hello, world! displayName: 'Egysoros parancs' + condition: eq(variables['Build.Reason'], 'IndividualCI') - script: | echo "##[section]Ez egy nagyobb rész" echo "##[command]Fájlok listája" @@ -24,3 +25,4 @@ stages: pwd echo "##[debug]Ez egy olyan üzenet, amit akkor használunk, ha valami hibajavítási üzenetet szeretnénk kiiratni" displayName: 'Többsoros' + condition: eq(variables['Build.Reason'], 'PullRequest') From 8d3effc073de0dfcafcf5b7a061b58e393109c9e Mon Sep 17 00:00:00 2001 From: Tibor Kiss Date: Thu, 14 Mar 2024 18:52:44 +0100 Subject: [PATCH 4/5] Schedule --- .github/workflows/alap.yaml | 2 ++ azure-pipelines.yml | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/.github/workflows/alap.yaml b/.github/workflows/alap.yaml index 76730bd..49ba841 100644 --- a/.github/workflows/alap.yaml +++ b/.github/workflows/alap.yaml @@ -10,6 +10,8 @@ on: branches: ["demo"] pull_request: branches: ["main"] + schedule: ## Minden 5 percben + - cron: '*/5 * * * *' # Engedélyezzük a manuális futtatást is workflow_dispatch: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 580d97b..6f2fed3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,6 +6,15 @@ trigger: - main - demo + +schedules: + - cron: '*/5 * * * *' + displayName: Minden 5 percben + branches: + include: + - main + - demo + pool: vmImage: ubuntu-latest From 2a42ecc60a25d2af844c200b521e61d314a27903 Mon Sep 17 00:00:00 2001 From: Tibor Kiss Date: Thu, 14 Mar 2024 19:00:42 +0100 Subject: [PATCH 5/5] Modositas --- .github/workflows/alap.yaml | 5 ++--- azure-pipelines.yml | 19 ++++++++++++++++++- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.github/workflows/alap.yaml b/.github/workflows/alap.yaml index 49ba841..bc8b7b6 100644 --- a/.github/workflows/alap.yaml +++ b/.github/workflows/alap.yaml @@ -30,11 +30,9 @@ jobs: # Futassunk egy parancsot - name: Egy soros parancsok - if: ${{ github.event_name == 'push' }} run: echo Hello, world! # Futtassunk több parancsot egyben - name: Több soros parancsok - if: ${{ github.event_name == 'pull_request' }} run: | echo "## Ez egy nagyobb rész" echo "## Fájlok listája" @@ -42,4 +40,5 @@ jobs: echo "## Helyi mappa" pwd echo "## Ez egy olyan üzenet, amit akkor használunk, ha valami hibajavítási üzenetet szeretnénk kiiratni" - env + sudo apt update + sudo apt upgrade -y diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6f2fed3..1a07e04 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,7 +19,24 @@ pool: vmImage: ubuntu-latest stages: - - stage: Azure_Pipeline_Alap + - stage: Azure_Pipeline_Alap_1 + jobs: + - job: Egyszeru_feladat + steps: + - script: echo Hello, world! + displayName: 'Egysoros parancs' + condition: eq(variables['Build.Reason'], 'IndividualCI') + - script: | + echo "##[section]Ez egy nagyobb rész" + echo "##[command]Fájlok listája" + ls -l + echo "##[debug]Helyi mappa" + pwd + echo "##[debug]Ez egy olyan üzenet, amit akkor használunk, ha valami hibajavítási üzenetet szeretnénk kiiratni" + displayName: 'Többsoros' + condition: eq(variables['Build.Reason'], 'PullRequest') + - stage: Azure_Pipeline_Alap_2 + dependsOn: Azure_Pipeline_Alap_1 jobs: - job: Egyszeru_feladat steps: