Skip to content

Commit edf39e4

Browse files
author
camilo
committed
update os ref. Try to fix bigendian.yml
1 parent 02a1b5a commit edf39e4

File tree

4 files changed

+28
-9
lines changed

4 files changed

+28
-9
lines changed

.github/workflows/bigendian.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@ on:
99
jobs:
1010
big-endian:
1111
runs-on: ubuntu-latest
12+
name: Build on s390x
1213
steps:
13-
- name: Get the qemu container
14-
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
15-
- name: Run uname
16-
run: uname -a
17-
- name: Run tests on s390x/ubuntu
18-
run: docker run --rm s390x/ubuntu bash -c "apt update && apt install -y gcc g++ make git && git clone https://github.com/kmilo17pet/QuarkTS.git --recursive && cd QuarkTS && make test"
19-
14+
- uses: actions/checkout@v4
15+
- uses: uraimo/run-on-arch-action@v2
16+
name: Run commands
17+
id: runcmd
18+
with:
19+
arch: s390x
20+
distro: ubuntu22.04
21+
run: |
22+
apt update && apt install -y gcc g++ make git
23+
git clone https://github.com/kmilo17pet/QuarkTS.git --recursive
24+
cd QuarkTS && make test

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"qclock.h": "c",
4040
"qatparser.h": "c",
4141
"qmemmang.h": "c",
42-
"string.h": "c"
42+
"string.h": "c",
43+
"typeinfo": "c"
4344
},
4445
"grammarly.selectors": [
4546
{

check/settings/c-stat-check.dnx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,19 @@
3535
<SumEnabled>0</SumEnabled>
3636
<ShowTimeSum>1</ShowTimeSum>
3737
</DataLog>
38+
<TerminalIO>
39+
<InputSource>1</InputSource>
40+
<InputMode2>10</InputMode2>
41+
<Filename>$PROJ_DIR$\TermIOInput.txt</Filename>
42+
<InputEcho>1</InputEcho>
43+
<ShowReset>0</ShowReset>
44+
<InputEncodingICU>0</InputEncodingICU>
45+
<OutputEncodingICU>0</OutputEncodingICU>
46+
</TerminalIO>
47+
<TermIOLog>
48+
<LoggingEnabled>_ 0</LoggingEnabled>
49+
<LogFile>_ ""</LogFile>
50+
</TermIOLog>
3851
<DisassembleMode>
3952
<mode>0</mode>
4053
</DisassembleMode>

src/os

Submodule os updated from 351cfdd to e856cdc

0 commit comments

Comments
 (0)