Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: re-enable windows #2041

Merged
merged 2 commits into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/cross-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
#- os: windows-latest
# target: x86_64-pc-windows-msvc
- os: windows-latest
target: x86_64-pc-windows-msvc

steps:
- name: Checkout sources
Expand Down Expand Up @@ -76,18 +76,18 @@ jobs:
with:
use-cross: ${{ matrix.job.use-cross }}
command: build
args: --profile local --verbose --locked --workspace
args: --verbose --locked --bins --tests

- name: Run forge
uses: actions-rs/cargo@v1
with:
use-cross: ${{ matrix.job.use-cross }}
command: run
args: --profile local --locked -p foundry-cli --bin forge -- --help
args: --locked --bin forge -- --help

- name: Run tests
uses: actions-rs/cargo@v1
with:
use-cross: ${{ matrix.job.use-cross }}
command: test
args: --profile local --locked --workspace -- --skip fork
args: --locked --workspace -- --skip fork
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ jobs:
target: aarch64-apple-darwin
arch: arm64
svm_target_platform: macosx-aarch64
#- os: windows-latest
# platform: win32
# target: x86_64-pc-windows-msvc
# arch: amd64
# svm_target_platform: macosx-amd64
- os: windows-latest
platform: win32
target: x86_64-pc-windows-msvc
arch: amd64
svm_target_platform: windows-amd64

steps:
- name: Checkout sources
Expand Down