summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-06-09 14:16:10 +0200
committerGitHub <noreply@github.com>2021-06-09 14:16:10 +0200
commite2f6cd904ccd8018b65ff897181388ae3f02ae6f (patch)
tree96efef3c0aa511093c793dae6ea648448510bb68 /.github
parent38ef2cabbecf694f66fa3bd5e69b9431c56a3f8d (diff)
parent0eb4fa604efe4e0b84d69749f688a79c2249c8b3 (diff)
Remove dependency on Hadoop
This pull request attempts to remove the dependency of the simulator on Apache Hadoop which is pulled in as a consequence of using parquet-mr. The reason for removal is that Apache Hadoop does not work natively on Windows without user intervention, which makes adoption on this platform more difficult. * Add Windows as CI target for the OpenDC simulator * Use `LocalInputFile` for Parquet reader usages * Use `LocalOutputFile` for Parquet writer usages * Remove Apache Hadoop as dependency of OpenDC.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b0e8cc38..28e5846b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -12,6 +12,9 @@ jobs:
matrix:
os: [ubuntu-latest]
java: [8, 16]
+ include:
+ - os: windows-latest
+ java: 16
steps:
- name: Checkout repository
uses: actions/checkout@v2