Skip to content

Commit f67c905

Browse files
committed
try build
1 parent 04cd0b9 commit f67c905

File tree

2 files changed

+27
-6
lines changed

2 files changed

+27
-6
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -560,9 +560,17 @@ jobs:
560560
strategy:
561561
matrix:
562562
include:
563-
- name: dist-x86_64-linux
564-
os: ubuntu-20.04-xl
565-
env: {}
563+
- name: dist-x86_64-msvc
564+
env:
565+
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --host=x86_64-pc-windows-msvc --target=x86_64-pc-windows-msvc --enable-full-tools --enable-profiler"
566+
SCRIPT: python x.py dist
567+
DIST_REQUIRE_ALL_TOOLS: 1
568+
os: windows-latest-xl
569+
- name: dist-x86_64-msvc-alt
570+
env:
571+
RUST_CONFIGURE_ARGS: "--build=x86_64-pc-windows-msvc --enable-extended --enable-profiler"
572+
SCRIPT: python x.py dist
573+
os: windows-latest-xl
566574
timeout-minutes: 600
567575
runs-on: "${{ matrix.os }}"
568576
steps:

src/ci/github-actions/ci.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -694,9 +694,22 @@ jobs:
694694
strategy:
695695
matrix:
696696
include:
697-
- &dist-x86_64-linux
698-
name: dist-x86_64-linux
699-
<<: *job-linux-xl
697+
- name: dist-x86_64-msvc
698+
env:
699+
RUST_CONFIGURE_ARGS: >-
700+
--build=x86_64-pc-windows-msvc
701+
--host=x86_64-pc-windows-msvc
702+
--target=x86_64-pc-windows-msvc
703+
--enable-full-tools
704+
--enable-profiler
705+
SCRIPT: python x.py dist
706+
DIST_REQUIRE_ALL_TOOLS: 1
707+
<<: *job-windows-xl
708+
- name: dist-x86_64-msvc-alt
709+
env:
710+
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
711+
SCRIPT: python x.py dist
712+
<<: *job-windows-xl
700713

701714
master:
702715
name: master

0 commit comments

Comments
 (0)