Skip to content

Commit

Permalink
Update path in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lbonaldo committed Oct 16, 2023
1 parent 54cccb4 commit f65c726
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,6 @@ jobs:
allow_failure: true
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- name: Create a new branch and pull test logs from repo
run: |
git checkout -b ${GITHUB_REF#refs/heads/}-testlogs
Expand All @@ -46,10 +40,16 @@ jobs:
git remote add testlog https://github.com/GenXProject/GenX-testlog.git
git pull testlog main
if [ -d Logs_v${{ matrix.version }} ]; then
mv Logs_v${{ matrix.version }}/*.log .
mv Logs_v${{ matrix.version }}/*.log .
else
mkdir Logs_v${{ matrix.version }}
mkdir Logs_v${{ matrix.version }}
fi
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- name: Commit logs and push back to repo
run: |
Expand Down

0 comments on commit f65c726

Please sign in to comment.