You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2024/03/20 09:26:13 UTC

(camel-k) branch main updated: fix(ci): use ubuntu which now have 16 GB memory

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new b521f43a9 fix(ci): use ubuntu which now have 16 GB memory
b521f43a9 is described below

commit b521f43a944864fd1e5ed7712b8305e3b12717cf
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Mar 19 17:00:39 2024 +0100

    fix(ci): use ubuntu which now have 16 GB memory
    
    Closes #4885
---
 .github/workflows/native.yml              | 5 +++--
 .github/workflows/nightly-native-test.yml | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml
index adcb1f4f0..edeb79905 100644
--- a/.github/workflows/native.yml
+++ b/.github/workflows/native.yml
@@ -65,7 +65,7 @@ concurrency:
 jobs:
   higher-memory:
     if: contains(github.event.pull_request.labels.*.name, 'trigger native test')
-    runs-on: macos-12
+    runs-on: ubuntu-latest
 
     steps:
     - name: Checkout code
@@ -90,7 +90,8 @@ jobs:
 
   lower-memory:
     if: contains(github.event.pull_request.labels.*.name, 'trigger native test')
-    runs-on: macos-12
+    runs-on: ubuntu-latest
+
 
     steps:
     - name: Checkout code
diff --git a/.github/workflows/nightly-native-test.yml b/.github/workflows/nightly-native-test.yml
index a3a357d2e..8b1b7bed8 100644
--- a/.github/workflows/nightly-native-test.yml
+++ b/.github/workflows/nightly-native-test.yml
@@ -34,7 +34,7 @@ jobs:
         ref-branch: [main]
 
     if: github.repository == 'apache/camel-k'
-    runs-on: macos-12
+    runs-on: ubuntu-latest
     steps:
     - name: "Checkout code"
       uses: actions/checkout@v4