This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch rel/1.0
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/1.0 by this push:
     new 4993c91c6d [To rel/1.0] Fix win CI (#8912)
4993c91c6d is described below

commit 4993c91c6d38e12a8ba488de0bc9f2d42f8e2836
Author: Haonan <[email protected]>
AuthorDate: Sun Jan 29 11:11:48 2023 +0800

    [To rel/1.0] Fix win CI (#8912)
---
 .github/workflows/main-win.yml | 47 +++---------------------------------------
 1 file changed, 3 insertions(+), 44 deletions(-)

diff --git a/.github/workflows/main-win.yml b/.github/workflows/main-win.yml
index 0778ad1b55..debb6df28e 100644
--- a/.github/workflows/main-win.yml
+++ b/.github/workflows/main-win.yml
@@ -43,9 +43,7 @@ jobs:
         # the server module:
         #   -pl server -am -DskipTests=true -Diotdb.test.only=true
         # but we just add labels here to make the action name more graceful
-        it_task: [ 'others',
-                   'server'
-        ]
+        it_task: [ 'others', 'server']
     runs-on: windows-latest
 
     steps:
@@ -63,51 +61,12 @@ jobs:
           restore-keys: ${{ runner.os }}-m2-
       - name: Check Apache Rat
         run: mvn -B apache-rat:check
-      - name: Download Hadoop Tools if Needed
-        # Using Powershell ...
-        # github action put codes to d:\a
-        run: mkdir D:\a\hadoop\bin ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/winutils.exe 
-OutFile D:\a\hadoop\bin\winutils.exe  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hadoop.dll 
-OutFile C:\windows\system32\hadoop.dll  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hadoop 
-OutFile D:\a\hadoop\bin\hadoop  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hadoop.cmd 
-OutFile D:\a\hadoop\bin\hadoop.cmd  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hadoop.exp 
-OutFile D:\a\hadoop\bin\hadoop.exp  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hadoop.lib 
-OutFile D:\a\hadoop\bin\hadoop.lib  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hadoop.pdb 
-OutFile D:\a\hadoop\bin\hadoop.pdb  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hdfs.dll 
-OutFile C:\windows\system32\hdfs.dll  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hdfs -OutFile 
D:\a\hadoop\bin\hdfs  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hdfs.cmd 
-OutFile D:\a\hadoop\bin\hdfs.cmd  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hdfs.exp 
-OutFile D:\a\hadoop\bin\hdfs.exp   ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hdfs.lib 
-OutFile D:\a\hadoop\bin\hdfs.lib  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hdfs.pdb 
-OutFile D:\a\hadoop\bin\hdfs.pdb  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/hdfs_static.lib
 -OutFile D:\a\hadoop\bin\hdfs_static.lib  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/libwinutils.lib
 -OutFile D:\a\hadoop\bin\libwinutils.lib  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/mapred 
-OutFile D:\a\hadoop\bin\mapred  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/mapred.cmd 
-OutFile D:\a\hadoop\bin\mapred.cmd  ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/rcc -OutFile 
D:\a\hadoop\bin\rcc ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/winutils.pdb 
-OutFile D:\a\hadoop\bin\winutils.pdb ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/yarn -OutFile 
D:\a\hadoop\bin\yarn ; `
-          Invoke-WebRequest 
https://github.com/cdarlint/winutils/raw/master/hadoop-2.7.3/bin/yarn.cmd 
-OutFile D:\a\hadoop\bin\yarn.cmd ; `
-          [Environment]::SetEnvironmentVariable("Path", $env:Path + 
";D:\a\hadoop\bin", "User") ; `
-          [Environment]::SetEnvironmentVariable("HADOOP_HOME", "D:\a\hadoop", 
"User")
-      - name: Add Hadoop Path (Win)
-        shell: bash
-        run: echo 'export PATH=/d/a/hadoop/bin:$PATH' >> ~/.bash_profile && 
echo 'export HADOOP_HOME=/d/a/hadoop' >> ~/.bash_profile && source 
~/.bash_profile
-      - name: Check Hadoop Path (Win)
-        shell: bash
-        run: source ~/.bash_profile && echo $PATH
-      - name: Cache Hadoop packages (Win)
-        uses: actions/cache@v3
-        with:
-          path: D:\a\hadoop
-          key: ${{ runner.os }}-hadoop-files${{ hashFiles('**/*.exe') }}
-          restore-keys: ${{ runner.os }}-hadoop-files
       - name: Test Server Module with Maven
         shell: bash
         if: ${{ matrix.it_task == 'server'}}
-        run: source ~/.bash_profile && mvn -B clean integration-test 
-Dtest.port.closed=true -pl server -am -DskipTests=true -Diotdb.test.only=true
+        run: mvn clean integration-test -Dtest.port.closed=true -pl server -am 
-DskipTests=true -Diotdb.test.only=true
       - name: Test Other Modules with Maven
         shell: bash
         if: ${{ matrix.it_task == 'others'}}
-        run: source ~/.bash_profile && mvn -B clean test 
-Dtest.port.closed=true -Diotdb.test.skip=true -P get-jar-with-dependencies
+        run: mvn clean test -Dtest.port.closed=true -Diotdb.test.skip=true -P 
get-jar-with-dependencies
 

Reply via email to