Skip to content

Commit

Permalink
fix(tests): Run arm64 tests in arm64 architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
valerena committed Dec 10, 2024
1 parent 71388dd commit 27a490c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/single-test.yml
Original file line number Diff line number Diff line change
@@ -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:

0 comments on commit 27a490c

Please sign in to comment.