Skip to content

Commit

Permalink
Revert "Checkout code after restoring caches"
Browse files Browse the repository at this point in the history
This reverts commit 35f71c9.
  • Loading branch information
EnricoMi committed Sep 12, 2022
1 parent 111762d commit 24a3ede
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@ jobs:
scala-version: '2.13.8'

steps:
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ matrix.spark-version }}-${{ matrix.scala-version }}

- name: Checkout
uses: actions/checkout@v3

Expand All @@ -79,6 +73,12 @@ jobs:
./set-version.sh ${{ matrix.spark-version }} ${{ matrix.scala-version }}
git diff
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ matrix.spark-version }}-${{ matrix.scala-version }}-${{ hashFiles('pom.xml') }}

- name: Setup JDK 1.8
uses: actions/setup-java@v3
with:
Expand Down Expand Up @@ -167,12 +167,6 @@ jobs:
python-version: '3.7'

steps:
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ matrix.spark-version }}-${{ matrix.scala-version }}

- name: Checkout
uses: actions/checkout@v3

Expand All @@ -187,6 +181,12 @@ jobs:
name: Binaries-${{ matrix.spark-version }}-${{ matrix.scala-version }}
path: .

- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-mvn-build-${{ matrix.spark-version }}-${{ matrix.scala-version }}-${{ hashFiles('pom.xml') }}

- name: Setup JDK 1.8
uses: actions/setup-java@v3
with:
Expand Down

0 comments on commit 24a3ede

Please sign in to comment.