Skip to content

Commit

Permalink
update os ref. Try to fix bigendian.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
camilo committed Oct 23, 2024
1 parent 02a1b5a commit edf39e4
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 9 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/bigendian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@ on:
jobs:
big-endian:
runs-on: ubuntu-latest
name: Build on s390x
steps:
- name: Get the qemu container
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Run uname
run: uname -a
- name: Run tests on s390x/ubuntu
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"

- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
name: Run commands
id: runcmd
with:
arch: s390x
distro: ubuntu22.04
run: |
apt update && apt install -y gcc g++ make git
git clone https://github.com/kmilo17pet/QuarkTS.git --recursive
cd QuarkTS && make test
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"qclock.h": "c",
"qatparser.h": "c",
"qmemmang.h": "c",
"string.h": "c"
"string.h": "c",
"typeinfo": "c"
},
"grammarly.selectors": [
{
Expand Down
13 changes: 13 additions & 0 deletions check/settings/c-stat-check.dnx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,19 @@
<SumEnabled>0</SumEnabled>
<ShowTimeSum>1</ShowTimeSum>
</DataLog>
<TerminalIO>
<InputSource>1</InputSource>
<InputMode2>10</InputMode2>
<Filename>$PROJ_DIR$\TermIOInput.txt</Filename>
<InputEcho>1</InputEcho>
<ShowReset>0</ShowReset>
<InputEncodingICU>0</InputEncodingICU>
<OutputEncodingICU>0</OutputEncodingICU>
</TerminalIO>
<TermIOLog>
<LoggingEnabled>_ 0</LoggingEnabled>
<LogFile>_ ""</LogFile>
</TermIOLog>
<DisassembleMode>
<mode>0</mode>
</DisassembleMode>
Expand Down
2 changes: 1 addition & 1 deletion src/os
Submodule os updated from 351cfd to e856cd

0 comments on commit edf39e4

Please sign in to comment.