diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..4e0ed0e Binary files /dev/null and b/.DS_Store differ diff --git a/.github/workflows/ci_github_runners.yaml b/.github/workflows/ci_github_runners.yaml new file mode 100644 index 0000000..752b3e0 --- /dev/null +++ b/.github/workflows/ci_github_runners.yaml @@ -0,0 +1,37 @@ +name: CI GitHub Runners + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + linux: + runs-on: ubuntu-latest + container: ${{matrix.container}} + env: + GH_JOBNAME: ${{matrix.jobname}} + GH_OS: Linux + strategy: + fail-fast: false + matrix: + jobname: [ubuntu20-julia1.7.3] + + steps: + - name: Verify Julia + run: julia --version + + - name: Checkout Action + uses: actions/checkout@v3 + + - name: Instantiate + run: | + echo $GITHUB_WORKSPACE/julia/GemmDenseThreads + cd $GITHUB_WORKSPACE/julia/GemmDenseThreads + julia --project -e 'using Pkg; Pkg.instantiate();' + + - name: Test + run: jjulia -t 2 --project test/runtest.jl diff --git a/julia/.DS_Store b/julia/.DS_Store new file mode 100644 index 0000000..3e6892a Binary files /dev/null and b/julia/.DS_Store differ diff --git a/julia/GemmDenseThreads/.DS_Store b/julia/GemmDenseThreads/.DS_Store new file mode 100644 index 0000000..e50c9d8 Binary files /dev/null and b/julia/GemmDenseThreads/.DS_Store differ diff --git a/scripts/.DS_Store b/scripts/.DS_Store new file mode 100644 index 0000000..6485b05 Binary files /dev/null and b/scripts/.DS_Store differ