Skip to content

Commit

Permalink
Use /tmp in GH Actions build.
Browse files Browse the repository at this point in the history
Similar to Travis CI.
  • Loading branch information
khatchad committed Jun 22, 2023
1 parent d74b32b commit b27e98a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
with:
repository: wala/IDE
# fetch-depth: 50
path: ./IDE
path: /tmp/IDE
- name: Checkout juliandolby/jython3 sources.
uses: actions/checkout@v3.5.2
with:
repository: juliandolby/jython3
path: ./jython3
path: /tmp/jython3
- name: Install Jython3.
run: |
pushd ./jython3
pushd /tmp/jython3
ant
pushd dist
mvn install:install-file -Dfile=./jython-dev.jar -DgroupId="org.python" -DartifactId="jython3" -Dversion="0.0.1-SNAPSHOT" -Dpackaging="jar" -DgeneratePom=true
Expand All @@ -38,7 +38,7 @@ jobs:
shell: bash
- name: Install IDE.
run: |
pushd ./IDE/com.ibm.wala.cast.lsp
pushd /tmp/IDE/com.ibm.wala.cast.lsp
mvn clean install -B -q -DskipTests
popd
- name: Check formatting with spotless.
Expand Down

0 comments on commit b27e98a

Please sign in to comment.