Skip to content

Commit a477833

Browse files
authored
remove windows temp (#9)
Signed-off-by: Daniel Guns <danbguns@gmail.com>
1 parent fed1779 commit a477833

2 files changed

Lines changed: 21 additions & 22 deletions

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
test:
1111
name: Test Suite
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
15+
1616
- name: Install Rust
1717
uses: dtolnay/rust-toolchain@stable
1818
with:
1919
components: rustfmt, clippy
20-
20+
2121
- name: Cache cargo registry
2222
uses: actions/cache@v4
2323
with:
@@ -30,16 +30,16 @@ jobs:
3030
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
3131
restore-keys: |
3232
${{ runner.os }}-cargo-
33-
33+
3434
- name: Check formatting
3535
run: cargo fmt -- --check
36-
36+
3737
- name: Run clippy
3838
run: cargo clippy --lib --tests -- -D warnings -A clippy::too_many_arguments -A clippy::items-after-test-module -A clippy::type-complexity -A clippy::should-implement-trait -A renamed_and_removed_lints -A clippy::collapsible-if -A clippy::len-zero -A clippy::assertions-on-constants -A dead-code
39-
39+
4040
- name: Run tests
4141
run: cargo test --lib --tests
42-
42+
4343
- name: Run integration tests
4444
run: cargo test --test crd_compatibility --test resource_registry --test model_compatibility --test field_extraction
4545

@@ -48,13 +48,13 @@ jobs:
4848
runs-on: ${{ matrix.os }}
4949
strategy:
5050
matrix:
51-
os: [ubuntu-latest, macos-latest, windows-latest]
51+
os: [ubuntu-latest, macos-latest]
5252
steps:
5353
- uses: actions/checkout@v4
54-
54+
5555
- name: Install Rust
5656
uses: dtolnay/rust-toolchain@stable
57-
57+
5858
- name: Cache cargo registry
5959
uses: actions/cache@v4
6060
with:
@@ -67,13 +67,12 @@ jobs:
6767
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
6868
restore-keys: |
6969
${{ runner.os }}-cargo-
70-
70+
7171
- name: Build
7272
run: cargo build --release
73-
73+
7474
- name: Upload artifacts
7575
uses: actions/upload-artifact@v4
7676
with:
7777
name: flux9s-${{ matrix.os }}
7878
path: target/release/flux9s*
79-

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ jobs:
6969
target: aarch64-apple-darwin
7070
artifact_name: flux9s
7171
asset_name: flux9s-macos-aarch64.tar.gz
72-
- os: windows-latest
73-
target: x86_64-pc-windows-msvc
74-
artifact_name: flux9s.exe
75-
asset_name: flux9s-windows-x86_64.zip
72+
# - os: windows-latest
73+
# target: x86_64-pc-windows-msvc
74+
# artifact_name: flux9s.exe
75+
# asset_name: flux9s-windows-x86_64.zip
7676

7777
steps:
7878
- uses: actions/checkout@v4
@@ -103,10 +103,10 @@ jobs:
103103
run: |
104104
tar -czf ${{ matrix.asset_name }} -C target/${{ matrix.target }}/release ${{ matrix.artifact_name }}
105105
106-
- name: Create archive (Windows)
107-
if: matrix.os == 'windows-latest'
108-
run: |
109-
Compress-Archive -Path target/${{ matrix.target }}/release/${{ matrix.artifact_name }} -DestinationPath ${{ matrix.asset_name }}
106+
# - name: Create archive (Windows)
107+
# if: matrix.os == 'windows-latest'
108+
# run: |
109+
# Compress-Archive -Path target/${{ matrix.target }}/release/${{ matrix.artifact_name }} -DestinationPath ${{ matrix.asset_name }}
110110

111111
- name: Upload artifact
112112
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)