[ML-400] Solve the problem of obtaining DAL version (#401) #1141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
permissions: # added using https://github.com/step-security/secure-repo | |
contents: read | |
jobs: | |
local-test-oneAPI_table: | |
name: Local Test for Units (OneAPI Table) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@b6e674f4b717d7b0ae3baee0fbe79f498905dfde # v1.4.4 | |
with: | |
java-version: 1.8 | |
- name: Restore cached dependencies | |
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 | |
with: | |
path: | | |
#/var/cache/apt/archives/*.deb | |
~/.m2/repository | |
/opt/intel/oneapi | |
~/opt | |
key: ${{ runner.os }}_spark-3.3.3_hadoop-3.2.0_oneapi-2023.0.0 | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Local Test | |
run: | | |
${{github.workspace}}/dev/ci/ci-local-dpc-test.sh | |
local-test-CPU: | |
name: Local Test for Units (CPU) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@b6e674f4b717d7b0ae3baee0fbe79f498905dfde # v1.4.4 | |
with: | |
java-version: 1.8 | |
- name: Restore cached dependencies | |
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 | |
with: | |
path: | | |
#/var/cache/apt/archives/*.deb | |
~/.m2/repository | |
/opt/intel/oneapi | |
~/opt | |
key: ${{ runner.os }}_spark-3.3.3_hadoop-3.2.0_oneapi-2023.0.0 | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Local Test | |
run: | | |
${{github.workspace}}/dev/ci/ci-local-test.sh | |
yarn-test: | |
if: ${{ false }} # disable for now | |
name: Yarn Test for Examples (CPU) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@b6e674f4b717d7b0ae3baee0fbe79f498905dfde # v1.4.4 | |
with: | |
java-version: 1.8 | |
- name: Restore cached dependencies | |
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 | |
with: | |
path: | | |
#/var/cache/apt/archives/*.deb | |
~/.m2/repository | |
/opt/intel/oneapi | |
~/opt | |
key: ${{ runner.os }}_spark-3.3.3_hadoop-3.2.0_oneapi-2023.0.0 | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Cluster Test | |
run: | | |
${{github.workspace}}/dev/ci/ci-yarn-test-cpu.sh | |
standalone-scala-test: | |
name: Standalone CPU_GPU_PROFILE Test for scala Examples (CPU) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@b6e674f4b717d7b0ae3baee0fbe79f498905dfde # v1.4.4 | |
with: | |
java-version: 1.8 | |
- name: Restore cached dependencies | |
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 | |
with: | |
path: | | |
#/var/cache/apt/archives/*.deb | |
~/.m2/repository | |
/opt/intel/oneapi | |
~/opt | |
key: ${{ runner.os }}_spark-3.3.3_hadoop-3.2.0_oneapi-2023.0.0 | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Cluster Test | |
run: | | |
${{github.workspace}}/dev/ci/ci-standalone-scala-test-cpu.sh | |
standalone-python-test: | |
name: Standalone CPU_GPU_PROFILE Test for python Examples (CPU) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@b6e674f4b717d7b0ae3baee0fbe79f498905dfde # v1.4.4 | |
with: | |
java-version: 1.8 | |
- name: Restore cached dependencies | |
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3 | |
with: | |
path: | | |
#/var/cache/apt/archives/*.deb | |
~/.m2/repository | |
/opt/intel/oneapi | |
~/opt | |
key: ${{ runner.os }}_spark-3.3.3_hadoop-3.2.0_oneapi-2023.0.0 | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Cluster Test | |
run: | | |
${{github.workspace}}/dev/ci/ci-standalone-python-test-cpu.sh |