Skip to content

Commit

Permalink
Revert to minimal Windows workflow
Browse files Browse the repository at this point in the history
This will (presumably) "just work", once #829 is resolved and rebased
into this branch.

[skip ci]
  • Loading branch information
Xophmeister committed Jan 15, 2025
1 parent 1a85da9 commit d993474
Showing 1 changed file with 1 addition and 29 deletions.
30 changes: 1 addition & 29 deletions .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,34 +15,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Build using the native toolchain
- name: Build
shell: bash
run: |
cargo build --all-features
- name: Run test suite
shell: bash
run: |
# Use GCC and GNU Binutils
export CC="$(which gcc)"
export CXX="$(which g++)"
export LD="$(which ld)"
# Explicitly set the linker to ld
export CFLAGS="-fuse-ld=ld"
export CXXFLAGS="-fuse-ld=ld"
# Update PATH
export PATH="$(dirname "${CC}"):$(dirname "${CXX}"):$(dirname "${LD}"):${PATH}"
cat <<EOF
**************************************************************
CC: ${CC}
CXX: ${CXX}
LD: ${LD}
**************************************************************
EOF
# Run the test suite
cargo test --all-features
run: cargo test --all-features

0 comments on commit d993474

Please sign in to comment.