From f02983b2d095c1a8621aba18a24c2f127d881b9a Mon Sep 17 00:00:00 2001 From: Takeru Sato Date: Sun, 11 Aug 2024 22:31:42 +0900 Subject: [PATCH] chore: delete appveyor.yml --- appveyor.yml | 67 ---------------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index f5070cf..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,67 +0,0 @@ -image: Visual Studio 2017 - -max_jobs: 3 - -cache: - - '%USERPROFILE%\.cargo' - -install: - - set PATH=C:\Ruby23\DevKit;C:\Ruby23\bin;%USERPROFILE%\.cargo\bin;%PATH% - - if exist '%USERPROFILE%\.cargo\bin\rustup.exe' ( - rustup.exe --default-host %TARGET% --default-toolchain %RUST_TOOLCHAIN% -y && - rustup.exe self update - ) else ( - curl -sSf -o rustup-init.exe https://win.rustup.rs && - rustup-init.exe --default-host %TARGET% --default-toolchain %RUST_TOOLCHAIN% -y - ) - # - set FLUENTD_VERSION=1.2.2 - # - devkitvars.bat - # - ruby -v - # - git clone -b v%FLUENTD_VERSION% --depth 1 https://github.com/fluent/fluentd.git .fluentd - # - cd .fluentd - # - gem install bundler - # - bundle install - # - bundle exec rake build - # - gem install pkg\fluentd-%FLUENTD_VERSION%.gem --no-ri --no-rdoc - # - cd .. - - rustc -Vv - - cargo -V - -build: false - -# before_test: -# - fluentd -c fluent.conf --daemon ./fluentd.pid - -test_script: - - cargo build --verbose --all - # - cargo test --verbose --all - -environment: - matrix: - # Stable channel - # - TARGET: i686-pc-windows-gnu - # RUST_TOOLCHAIN: stable - # - TARGET: i686-pc-windows-msvc - # RUST_TOOLCHAIN: stable - - TARGET: x86_64-pc-windows-gnu - RUST_TOOLCHAIN: stable - # - TARGET: x86_64-pc-windows-msvc - # RUST_TOOLCHAIN: stable - # # Beta channel - # - TARGET: i686-pc-windows-gnu - # RUST_TOOLCHAIN: beta - # - TARGET: i686-pc-windows-msvc - # RUST_TOOLCHAIN: beta - - TARGET: x86_64-pc-windows-gnu - RUST_TOOLCHAIN: beta - # - TARGET: x86_64-pc-windows-msvc - # RUST_TOOLCHAIN: beta - # # Nightly channel - # - TARGET: i686-pc-windows-gnu - # RUST_TOOLCHAIN: nightly - # - TARGET: i686-pc-windows-msvc - # RUST_TOOLCHAIN: nightly - - TARGET: x86_64-pc-windows-gnu - RUST_TOOLCHAIN: nightly - # - TARGET: x86_64-pc-windows-msvc - # RUST_TOOLCHAIN: nightly