Skip to content

Commit

Permalink
Remove unneeded environment variables in workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
  • Loading branch information
exg committed Jan 1, 2025
1 parent c78e8b1 commit fe2e4c7
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ jobs:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
env:
CC: "gcc"
CFLAGS: "-O2 -fno-plt"
LDFLAGS: "-O2 -flto -Wl,--as-needed"
CARGO_UNSTABLE_SPARSE_REGISTRY: "true"

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -72,11 +67,6 @@ jobs:
maturin_args: '--no-default-features',
},
]
env:
CC: "gcc"
CFLAGS: "-O2"
LDFLAGS: "-O2 -flto -Wl,--as-needed"
CARGO_UNSTABLE_SPARSE_REGISTRY: "true"

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -149,12 +139,6 @@ jobs:
python-version: ${{ matrix.python-version }}
- run: python -m pip install -U pip wheel maturin
- run: pip install -r requirements.txt
- env:
CC: "clang"
CFLAGS: "-O2 -fno-plt -flto=thin"
LDFLAGS: "-O2 -flto=thin -fuse-ld=lld -Wl,--as-needed"
RUSTFLAGS: "-C linker=clang"
CARGO_UNSTABLE_SPARSE_REGISTRY: "true"
run: maturin build --release -i python${{ matrix.python-version }} --target universal2-apple-darwin
- run: pip install ormsgpack --no-index -f target/wheels
- run: pytest
Expand Down

0 comments on commit fe2e4c7

Please sign in to comment.