Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Apr 23, 2023
1 parent ab8ee2c commit cc81572
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,12 +310,6 @@ jobs:
- build
- test
- package
- run:
name: "Install qemu"
command: sudo apt update -y && sudo apt install -y qemu-user-static
- run:
name: "Test CPU check"
command: (qemu-x86_64-static -cpu qemu64 bin/evmc run --vm ./lib/libevmone.so,trace 6000 2>&1 || true) | grep 'CPU does not support'

release-windows:
executor: win/server-2022
Expand Down Expand Up @@ -592,7 +586,6 @@ jobs:
executor: linux-gcc-latest
environment:
BUILD_TYPE: Release
CMAKE_OPTIONS: -DCMAKE_CROSSCOMPILING_EMULATOR=qemu-x86_64-static
QEMU_CPU: core2duo # The lowest 64-bit CPU I could find, but qemu64 should be good too.
steps:
- run:
Expand All @@ -601,10 +594,12 @@ jobs:
- build
- run:
name: "Check evmone.so"
command: qemu-x86_64-static bin/evmc run --vm ./lib/libevmone.so,trace 6000 2>&1
working_directory: ~/build
command: (! qemu-x86_64-static bin/evmc run --vm ./lib/libevmone.so,trace 6000 2>&1) | grep "CPU does not support"
- run:
name: "Check unittests"
command: qemu-x86_64-static bin/evmone-unittests
working_directory: ~/build
command: (! qemu-x86_64-static bin/evmone-unittests 2>&1) | grep "CPU does not support"



Expand Down

0 comments on commit cc81572

Please sign in to comment.