Skip to content

Commit

Permalink
#827: Fix GitHub Action Runner for Windows (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfeilex authored Jul 28, 2022
1 parent 1490409 commit 675ae77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Set up Shellcheck
run: choco install shellcheck
- name: Build project with Maven
run: mvn -B -ntp install

Expand Down
6 changes: 2 additions & 4 deletions scripts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,6 @@
<profile>
<id>integration-test</id>
<activation>
<os>
<family>!Windows</family>
</os>
<property>
<name>!skipTests</name>
</property>
Expand All @@ -157,7 +154,8 @@
</execution>
</executions>
<configuration>
<executable>${project.basedir}/src/test/bash/all-tests</executable>
<executable>bash</executable>
<commandlineArgs>${project.basedir}/src/test/bash/all-tests</commandlineArgs>
<workingDirectory>${project.build.directory}</workingDirectory>
</configuration>
</plugin>
Expand Down

0 comments on commit 675ae77

Please sign in to comment.