diff options
| author | StevenWdV <stevenwdv@gmail.com> | 2022-02-09 17:55:31 +0100 |
|---|---|---|
| committer | StevenWdV <stevenwdv@gmail.com> | 2022-02-09 17:56:27 +0100 |
| commit | 7a2962cebcafe28f042b2549481baedaf5e3df7c (patch) | |
| tree | 152145f79f8a012087105b0a1a4a861eb0048221 /wrappers | |
| parent | 475118ceb9d383fc6e0b52475423fff159dc0535 (diff) | |
Add build tasks to GitHub workflow
Diffstat (limited to 'wrappers')
| -rw-r--r-- | wrappers/java-android/Makefile | 2 | ||||
| -rwxr-xr-x | wrappers/python/setup.py | 2 | ||||
| -rw-r--r-- | wrappers/swift/Package.swift | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/wrappers/java-android/Makefile b/wrappers/java-android/Makefile index 1082aed..9d9ca79 100644 --- a/wrappers/java-android/Makefile +++ b/wrappers/java-android/Makefile @@ -10,6 +10,8 @@ endif build: ./gradlew $(GRADLE_FLAGS) assembleRelease +pack: build + # Unit tests use library for desktop OS platform, so we still need .try-build-lib for this # The unit tests find this library through the library path set in common.mk unit-test: .try-build-lib diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py index 9e7bde4..a1ce1ee 100755 --- a/wrappers/python/setup.py +++ b/wrappers/python/setup.py @@ -76,7 +76,7 @@ class bdist_wheel(_bdist_wheel): print(f"Building wheel for platform {self.plat_name}") # setuptools will only use paths inside the package for package_data, so we copy the library - tmp_lib = shutil.copy2(f"{self.exports_lib_path}/{libpath}", "eduvpncommon/lib/") + tmp_lib = shutil.copy(f"{self.exports_lib_path}/{libpath}", "eduvpncommon/lib/") _bdist_wheel.run(self) os.remove(tmp_lib) diff --git a/wrappers/swift/Package.swift b/wrappers/swift/Package.swift index bb6f8e9..5b675ac 100644 --- a/wrappers/swift/Package.swift +++ b/wrappers/swift/Package.swift @@ -1,5 +1,4 @@ -// swift-tools-version:5.1 -//TODO ^ find out minimal version +// swift-tools-version:5.0 import PackageDescription |
