Skip to content

Commit

Permalink
updating more actions #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Oct 13, 2022
1 parent 4e02690 commit 5a3b27b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Setting up SonarQube cache
if: matrix.build_type == 'full' && github.repository == 'eclipse/sumo' && github.event_name == 'schedule' && matrix.compiler == 'gcc'
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: sumo/sonar-cache
key: ${{ github.head_ref }}-${{ github.run_number }}
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
sumo/tests/runTests.sh -b ci -a tools.python2.ci
- name: Uploading artifacts (SUMO binaries)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: Linux-${{ matrix.compiler }}-${{ matrix.build_type }}
path: sumo/bin
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ jobs:
make CTEST_OUTPUT_ON_FAILURE=1 examples test
- name: Uploading artifacts (SUMO binaries)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: macOS
path: sumo/bin

- name: Uploading FMI 2.0 FMU artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: sumo-fmi2-darwin64
path: sumo/bin/sumo-fmi2-darwin64.fmu
6 changes: 3 additions & 3 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
path: sumolibraries

- name: "Set up compiler cache"
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: C:\Users\runneradmin\AppData\Local\Mozilla\sccache\cache
key: ${{ matrix.build_type }}-${{ github.head_ref }}-${{ github.run_number }}
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
cmake --build . --config Release --target traas
- name: Uploading artifacts (SUMO binaries)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Windows-${{ matrix.build_type }}
path: sumo/bin
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Uploading test results
if: always() && github.repository == 'DLR-TS/sumo'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: texttesttmp-${{ matrix.build_type }}
path: D:/texttest/tt.zip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheel-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
python build/setup-traci.py bdist_wheel
- name: Uploading artifacts (Helper wheels)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: helper-wheels
path: tools/dist
Expand All @@ -46,7 +46,7 @@ jobs:
entrypoint: tools/build/build_wheels.sh

- name: Uploading artifacts (Python wheels)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: manylinux-wheels
path: wheelhouse
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Uploading test results
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: texttesttmp-${{ matrix.python }}
path: ~/.texttest/tmp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
if [[ "${{ matrix.python_version }}" == "3.8" ]]; then mv dist/eclipse_sumo-* `echo dist/eclipse_sumo-* | sed 's/cp38-cp38/py2.py3-none/'`; fi
- name: Uploading artifacts (Python wheels)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: python-wheels
path: sumo/dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheel-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
architecture: x64

- name: "Set up compiler cache"
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: C:\Users\runneradmin\AppData\Local\Mozilla\sccache\cache
key: ${{ matrix.build_type }}-${{ matrix.python }}-${{ github.head_ref }}-${{ github.run_number }}
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
# we should rename the sumo wheel here
- name: Uploading artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: Py3-${{ matrix.build_type }}-wheels
path: sumo/dist
Expand All @@ -112,7 +112,7 @@ jobs:
- name: Uploading test results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: texttesttmp-${{ matrix.build_type }}-${{ matrix.python }}
path: D:/texttest
Expand Down

0 comments on commit 5a3b27b

Please sign in to comment.