aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorMerry <[email protected]>2024-01-28 14:56:59 +0000
committerMerry <[email protected]>2024-01-28 14:56:59 +0000
commit99c0a73f91e7a5e66db686f29e158e99193a043d (patch)
tree67f2658c627ad55fe23d3d83ba76c9d8a65f99c2 /.github/workflows
parent720d6bbcd87a8aecf628ab26a55ac7b17f7325df (diff)
downloaddynarmic-99c0a73f91e7a5e66db686f29e158e99193a043d.tar.gz
dynarmic-99c0a73f91e7a5e66db686f29e158e99193a043d.zip
Squashed 'externals/oaknut/' changes from c24f918e5..d0488d932
d0488d932 oaknut: 2.0.0 40ad78bbf oaknut: Implement DualCodeBlock and related support 9f131cfb5 oaknut: add configuration for standalone installation 69799b43c oaknut: Test building for Android on CI 1d51f5512 oaknut: 1.2.2 918bd94f0 oaknut: Eliminate -Wconversion warnings 316d8869e oaknut: Fix edgecases in MOVP2R on +/-4GiB boundary d8634eaa1 oaknut: Fix page boundary error in ADP d0ca9a24e oaknut: Update README examples for CPU feature detection dbeec268b oaknut: feature_detection_freebsd: Warn about incompatibility with earlier FreeBSD versions 86e5386e2 oaknut: feature_detect: Support NetBSD df4cf2d48 oaknut: feature_detect: Support OpenBSD 99dfff25a oaknut: feature_detection: Read ID registers 319b3d2c9 oaknut: Add basic CPU feature detection 23e9ddb4c oaknut: CI: Don't run slow tests on OpenBSD 734f1bdb4 oaknut: CI: Use up-to-date qemu f462c9774 oaknut: CI: Build on OpenBSD 19cd42204 oaknut: code_block: Add NetBSD and OpenBSD support 18b86a3ec oaknut: SystemReg: Add more EL0 accessible registers 53c43bf0c oaknut/tests: Reduce iterations for MOVP2R cc37df19e oaknut: Test on FreeBSD a66b32d26 oaknut: Fix crossing sign boundary in PageOffset 206468d72 oaknut: CI: Add macos-arm64 build e6eecc3f9 oaknut: 1.2.1 4252d8f4a oaknut: CMakeLists: Warnings are errors on MSVC 408eed65f oaknut: arm64_encode_helpers: remove unreachable code bfc8eedfb oaknut: arm64_encode_helpers: p maybe unused ff4456eca oaknut: Avoid negation of unsigned values b4ac8fd6c oaknut: Fix MOV for applications of MOVN 0575cadc4 oaknut: Disable certain functionality where absolute addressing is not available 394a3c8f0 oaknut: Appease MSVC 011183670 oaknut: 1.2.0 e83c9f327 oaknut: Add VectorCodeGenerator 5eb122cc5 oaknut: Tidy up public header 45c5a7b25 oaknut: Fix clang-format errors 36243256f oaknut: Add `const` qualifier to `AddrOffset` ctor 4af500cb5 oaknut: Add `ptr` accessor to `Label` bccb06669 oaknut: CodeGenerator const correctness da0590a86 oaknut: github: Update package repositories git-subtree-dir: externals/oaknut git-subtree-split: d0488d9320ae673167dd9117223e3453d5ff102f
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build-and-test.yml140
1 files changed, 137 insertions, 3 deletions
diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml
index b7c396d7..2918c83e 100644
--- a/.github/workflows/build-and-test.yml
+++ b/.github/workflows/build-and-test.yml
@@ -9,6 +9,9 @@ jobs:
- name: Checkout oaknut repo
uses: actions/checkout@v3
+ - name: Update package repositories
+ run: sudo apt-get update
+
- name: Install dependencies
run: >
sudo apt-get install -q -y
@@ -17,6 +20,22 @@ jobs:
ninja-build
qemu-user
+ - name: Checkout qemu
+ uses: actions/checkout@v3
+ with:
+ repository: qemu/qemu
+ ref: v8.1.2
+ path: externals/qemu
+
+ - name: Build qemu
+ working-directory: externals/qemu
+ run: |
+ sudo apt-get install git libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev ninja-build
+ mkdir build
+ cd build
+ ../configure --target-list=aarch64-linux-user
+ make -j4 qemu-aarch64
+
- name: Checkout Catch2 v3 repo
uses: actions/checkout@v3
with:
@@ -41,8 +60,8 @@ jobs:
- name: Test
working-directory: ${{github.workspace}}/build
- run: qemu-aarch64 -L /usr/aarch64-linux-gnu ./oaknut-tests -d yes
-
+ run: ../externals/qemu/build/qemu-aarch64 -L /usr/aarch64-linux-gnu ./oaknut-tests -d yes
+
test_on_windows:
runs-on: windows-latest
name: msvc-arm64
@@ -57,7 +76,7 @@ jobs:
repository: catchorg/Catch2
ref: v3.2.0
path: externals/catch
-
+
- name: Setup msvc-arm64 environment
uses: ilammy/msvc-dev-cmd@v1
with:
@@ -73,3 +92,118 @@ jobs:
- name: Build
working-directory: ${{github.workspace}}/build
run: cmake --build . --config Release
+
+ test_on_macos:
+ runs-on: macos-latest
+ name: macos-arm64
+
+ steps:
+ - name: Checkout oaknut repo
+ uses: actions/checkout@v3
+
+ - name: Checkout Catch2 v3 repo
+ uses: actions/checkout@v3
+ with:
+ repository: catchorg/Catch2
+ ref: v3.2.0
+ path: externals/catch
+
+ - name: Install dependencies
+ run: |
+ brew install ninja
+
+ - name: Configure CMake
+ run: >
+ cmake
+ -B ${{github.workspace}}/build
+ -GNinja
+ -DCMAKE_OSX_ARCHITECTURES=arm64
+ -DOAKNUT_USE_BUNDLED_CATCH=ON
+
+ - name: Build
+ working-directory: ${{github.workspace}}/build
+ run: cmake --build . --config Release
+
+ test_on_freebsd:
+ runs-on: ubuntu-latest
+ name: freebsd-arm64
+
+ steps:
+ - name: Checkout oaknut repo
+ uses: actions/checkout@v3
+
+ - name: Build and Test
+ uses: cross-platform-actions/[email protected]
+ with:
+ operating_system: freebsd
+ architecture: arm64
+ version: '13.2'
+ shell: bash
+ run: |
+ pwd
+ sudo pkg update
+ sudo pkg install -y catch2 cmake ninja
+ cmake -B ${{github.workspace}}/build -GNinja
+ cd build
+ cmake --build . --config Release
+ ./oaknut-tests -d yes
+
+ test_on_openbsd:
+ runs-on: ubuntu-latest
+ name: openbsd-arm64
+
+ steps:
+ - name: Checkout oaknut repo
+ uses: actions/checkout@v3
+
+ - name: Build and Test
+ uses: cross-platform-actions/[email protected]
+ with:
+ operating_system: openbsd
+ architecture: arm64
+ version: '7.3'
+ shell: bash
+ run: |
+ pwd
+ sudo pkg_add catch2 cmake ninja
+ cmake -B ${{github.workspace}}/build -GNinja
+ cd build
+ cmake --build . --config Release
+ ./oaknut-tests -d yes "~[slow]"
+
+ test_on_android:
+ runs-on: ubuntu-latest
+ name: android
+
+ steps:
+ - name: Checkout oaknut repo
+ uses: actions/checkout@v3
+
+ - name: Update package repositories
+ run: sudo apt-get update
+
+ - name: Install dependencies
+ run: sudo apt-get install -q -y ninja-build
+
+ - name: Checkout Catch2 v3 repo
+ uses: actions/checkout@v3
+ with:
+ repository: catchorg/Catch2
+ ref: v3.2.0
+ path: externals/catch
+
+ - name: Configure CMake
+ run: >
+ cmake
+ -B ${{github.workspace}}/build
+ -H.
+ -GNinja
+ -DANDROID_ABI=arm64-v8a
+ -DANDROID_PLATFORM=30
+ -DCMAKE_BUILD_TYPE=Release
+ -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake
+ -DOAKNUT_USE_BUNDLED_CATCH=ON
+
+ - name: Build
+ working-directory: ${{github.workspace}}/build
+ run: cmake --build . --config Release