Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
howjmay committed Mar 4, 2024
1 parent 436da50 commit ee05a18
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/cross-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CROSS TEST

on: [push, pull_request]

jobs:
host-x86:
runs-on: ubuntu-20.04
strategy:
matrix:
arch: [x86_64]
cxx_compiler: [g++-10, clang++-11]
steps:
- name: checkout code
uses: actions/checkout@v4
- name: build artifact
env:
CXX: ${{ matrix.cxx_compiler }}
run: |
sh .ci/cross-tool.sh
make check
sh .ci/cross-check.sh

0 comments on commit ee05a18

Please sign in to comment.