From 7a51c7fd3087aa57d63e815c1b84fe843fe9c8b0 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Mon, 25 May 2020 23:40:58 -0500 Subject: [PATCH] Maint/CICD ~ GHA - disable windows-gnu builds with unresolvable linker errors - `undefined reference to `_imp____acrt_iob_func'` - ref: - ref: - ref: - ref: --- .github/workflows/CICD.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index c63f353c..d4ccae57 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -42,9 +42,9 @@ jobs: - { os: ubuntu-18.04 , target: x86_64-unknown-linux-musl , use-cross: use-cross } - { os: ubuntu-16.04 , target: x86_64-unknown-linux-gnu , use-cross: use-cross } - { os: macos-latest , target: x86_64-apple-darwin } - - { os: windows-latest , target: i686-pc-windows-gnu } + # - { os: windows-latest , target: i686-pc-windows-gnu } ## disabled; linker errors (missing '_imp____acrt_iob_func') - { os: windows-latest , target: i686-pc-windows-msvc } - - { os: windows-latest , target: x86_64-pc-windows-gnu } ## note: requires rust >= 1.43.0 to link correctly + # - { os: windows-latest , target: x86_64-pc-windows-gnu } ## disabled; linker errors (missing '_imp____acrt_iob_func') - { os: windows-latest , target: x86_64-pc-windows-msvc } steps: - uses: actions/checkout@v1 @@ -140,7 +140,7 @@ jobs: case ${{ matrix.job.target }} in arm-*) unset JOB_DO_TESTING ;; esac; echo set-output name=JOB_DO_TESTING::${JOB_DO_TESTING:-/false} echo ::set-output name=JOB_DO_TESTING::${JOB_DO_TESTING} - # # * test only library units tests and binary for arm-type targets + # # * test only library unit tests and binary for arm-type targets unset CARGO_TEST_OPTIONS unset CARGO_TEST_OPTIONS ; case ${{ matrix.job.target }} in arm-* | aarch64-*) CARGO_TEST_OPTIONS="--lib --bin ${PROJECT_NAME}" ;; esac; echo set-output name=CARGO_TEST_OPTIONS::${CARGO_TEST_OPTIONS}