From 27a490cb3d89710808e8ba1eb8322708e52f698d Mon Sep 17 00:00:00 2001 From: Renato Valenzuela Date: Tue, 10 Dec 2024 19:28:39 +0000 Subject: [PATCH 1/2] fix(tests): Run arm64 tests in arm64 architecture --- .github/workflows/integ-tests.yml | 2 +- .github/workflows/single-test.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/single-test.yml diff --git a/.github/workflows/integ-tests.yml b/.github/workflows/integ-tests.yml index 7fddc95..fa3025f 100644 --- a/.github/workflows/integ-tests.yml +++ b/.github/workflows/integ-tests.yml @@ -26,7 +26,7 @@ jobs: - name: run integration tests run: make integ-tests-with-docker-x86-64 integ-tests-arm64: - runs-on: ubuntu-latest + runs-on: macos-14 environment: name: integ-tests steps: diff --git a/.github/workflows/single-test.yml b/.github/workflows/single-test.yml new file mode 100644 index 0000000..d8eff11 --- /dev/null +++ b/.github/workflows/single-test.yml @@ -0,0 +1,27 @@ +name: Single test + +on: + workflow_dispatch: + push: + branches: + - single-test + +jobs: + read-file: + name: Read file and print + runs-on: ubuntu-latest + steps: + - name: Download file + uses: actions/download-artifact@v4 + with: + name: homework_pre + - shell: bash + run: | + expr 3 + 7 > math-homework.txt + - name: Upload math result for job 1 + uses: actions/upload-artifact@v4 + with: + name: homework_pre + path: math-homework.txt + write-file: + From e5830f5248636de53bd6eeb88813b7e6364b1cd3 Mon Sep 17 00:00:00 2001 From: Renato Valenzuela Date: Tue, 10 Dec 2024 19:32:59 +0000 Subject: [PATCH 2/2] remove extra --- .github/workflows/single-test.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/single-test.yml diff --git a/.github/workflows/single-test.yml b/.github/workflows/single-test.yml deleted file mode 100644 index d8eff11..0000000 --- a/.github/workflows/single-test.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Single test - -on: - workflow_dispatch: - push: - branches: - - single-test - -jobs: - read-file: - name: Read file and print - runs-on: ubuntu-latest - steps: - - name: Download file - uses: actions/download-artifact@v4 - with: - name: homework_pre - - shell: bash - run: | - expr 3 + 7 > math-homework.txt - - name: Upload math result for job 1 - uses: actions/upload-artifact@v4 - with: - name: homework_pre - path: math-homework.txt - write-file: -