diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-06-09 14:16:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-09 14:16:10 +0200 |
| commit | e2f6cd904ccd8018b65ff897181388ae3f02ae6f (patch) | |
| tree | 96efef3c0aa511093c793dae6ea648448510bb68 /.github/workflows/build.yml | |
| parent | 38ef2cabbecf694f66fa3bd5e69b9431c56a3f8d (diff) | |
| parent | 0eb4fa604efe4e0b84d69749f688a79c2249c8b3 (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/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 3 |
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 |
