diff --git a/.github/workflows/r-ci.yml b/.github/workflows/r-ci.yml index 8c59bef63d..1352a16f2e 100644 --- a/.github/workflows/r-ci.yml +++ b/.github/workflows/r-ci.yml @@ -36,6 +36,17 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Show matrix OS + run: echo "matrix.os:" ${{ matrix.os }} + + - name: Linux CPU info + if: ${{ matrix.os == 'ubuntu-latest' }} + run: cat /proc/cpuinfo + + - name: MacOS CPU info + if: ${{ matrix.os == 'macOS-latest' }} + run: sysctl -a | grep cpu + - name: Bootstrap run: cd apis/r && tools/r-ci.sh bootstrap