Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mengdaming committed Sep 18, 2023
1 parent 49d4365 commit 5163357
Show file tree
Hide file tree
Showing 11 changed files with 504 additions and 607 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ jobs:
with:
dotnet-version: '6.0.x'
- name: Build
run: |
cd csharp
dotnet build
working-directory: csharp
run: dotnet build
- name: Test
run: |
cd csharp
dotnet test
working-directory: csharp
run: dotnet test
10 changes: 4 additions & 6 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ jobs:
with:
go-version: '1.20'
- name: Build
run: |
cd go
go build -v ./...
working-directory: go
run: go build -v ./...
- name: Test
run: |
cd go
go test -v ./...
working-directory: go
run: go test -v ./...
7 changes: 3 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
working-directory: python
run: |
cd python
python -m pip install --upgrade pip
pip install .
pip install --use-pep517 -r ./requirements.txt
- name: Test with pytest
run: |
cd python
pytest
working-directory: python
run: pytest
2 changes: 1 addition & 1 deletion cpp/cpp_easy_setup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ set CMAKE=cmake.exe
set CTEST=ctest.exe
set CMAKE_GENERATOR_OPTIONS=-G "Visual Studio 15 2017 Win64"

set CMAKE_VERSION=3.26.2
set CMAKE_VERSION=3.27.3
set CMAKE_EXPECTED_DIR=cmake-%CMAKE_VERSION%-%OS%-%ARCH%
set CMAKE_EXPECTED_ARCHIVE_FILE=%CMAKE_EXPECTED_DIR%.%ARCHIVE_EXTENSION%
set CMAKE_ARCHIVE_URL="http://github.com/Kitware/CMake/releases/download/v%CMAKE_VERSION%/%CMAKE_EXPECTED_ARCHIVE_FILE%"
Expand Down
4 changes: 2 additions & 2 deletions cpp/cpp_easy_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Darwin)
cmake_generator_options="-G \"Xcode\""
;;
Linux)
os="Linux"
os="linux"
arch="x86_64"
archive_extension="tar.gz"
cmake_bin_dir="bin"
Expand All @@ -59,7 +59,7 @@ esac
base_dir=$(dirname -- "$0")
cd "${base_dir}"

cmake_version="3.26.2"
cmake_version="3.27.3"
cmake_expected_dir="cmake-${cmake_version}-${os}-${arch}"
cmake_expected_archive_file="${cmake_expected_dir}.${archive_extension}"
cmake_archive_url="http://github.com/Kitware/CMake/releases/download/v${cmake_version}/${cmake_expected_archive_file}"
Expand Down
8 changes: 4 additions & 4 deletions csharp/tests/Murex/Kata/BowlingGame/BowlingGame.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

<ItemGroup>
<PackageReference Include="JunitXml.TestLogger" Version="3.0.134" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="xunit" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Binary file modified java/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion java/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion java/gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.0</version>
<configuration>
<show>public</show>
<nohelp>true</nohelp>
Expand Down
Loading

0 comments on commit 5163357

Please sign in to comment.