diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index cf4c6de94c..9fa19623f7 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -92,9 +92,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 } - { os: macos-latest , target: x86_64-apple-darwin } - # - { os: windows-latest , target: i686-pc-windows-gnu , use-cross: use-cross } ## disabled; linker errors (missing '_imp____acrt_iob_func') + - { os: windows-latest , target: i686-pc-windows-gnu , use-cross: use-cross } - { os: windows-latest , target: i686-pc-windows-msvc } - # - { os: windows-latest , target: x86_64-pc-windows-gnu , use-cross: use-cross } ## disabled; linker errors (missing '_imp____acrt_iob_func') + - { os: windows-latest , target: x86_64-pc-windows-gnu , use-cross: use-cross } - { os: windows-latest , target: x86_64-pc-windows-msvc } steps: - name: Git checkout @@ -110,10 +110,6 @@ jobs: id: vars shell: bash run: | - # toolchain - TOOLCHAIN="stable" ## default to "stable" toolchain - # * specify alternate TOOLCHAIN for *-pc-windows-gnu targets; gnu targets on Windows are broken for the standard *-pc-windows-msvc toolchain (refs: , , ) - case ${{ matrix.job.target }} in *-pc-windows-gnu) TOOLCHAIN="stable-${{ matrix.job.target }}" ;; esac; # staging directory STAGING='_staging' echo set-output name=STAGING::${STAGING} @@ -214,7 +210,7 @@ jobs: - name: Install Rust toolchain uses: actions-rs/toolchain@v1 with: - toolchain: ${{ steps.vars.outputs.TOOLCHAIN }} + toolchain: stable target: ${{ matrix.job.target }} override: true profile: minimal # minimal component installation (ie, no documentation)