Skip to content

Commit 27a490c

Browse files
committed
fix(tests): Run arm64 tests in arm64 architecture
1 parent 71388dd commit 27a490c

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.github/workflows/integ-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: run integration tests
2727
run: make integ-tests-with-docker-x86-64
2828
integ-tests-arm64:
29-
runs-on: ubuntu-latest
29+
runs-on: macos-14
3030
environment:
3131
name: integ-tests
3232
steps:

.github/workflows/single-test.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Single test
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- single-test
8+
9+
jobs:
10+
read-file:
11+
name: Read file and print
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Download file
15+
uses: actions/download-artifact@v4
16+
with:
17+
name: homework_pre
18+
- shell: bash
19+
run: |
20+
expr 3 + 7 > math-homework.txt
21+
- name: Upload math result for job 1
22+
uses: actions/upload-artifact@v4
23+
with:
24+
name: homework_pre
25+
path: math-homework.txt
26+
write-file:
27+

0 commit comments

Comments
 (0)