Skip to content

Commit

Permalink
github: Fix name modifier for ubuntu 20.04
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Falcato <pedro.falcato@gmail.com>
  • Loading branch information
heatd committed Sep 16, 2022
1 parent 328ef57 commit ddd53f2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.10.1' # Require the same version of python as Onyx builds, in order to ease the build
python-version: '3.10.6' # Require the same version of python as Onyx builds, in order to ease the build

- name: Download the x86_64-onyx-linux toolchain
uses: actions/download-artifact@v2.0.8
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.10.1' # Require the same version of python as Onyx builds, in order to ease the build
python-version: '3.10.6' # Require the same version of python as Onyx builds, in order to ease the build


# Runs a single command using the runners shell
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.10.1' # Require the same version of python as Onyx builds, in order to ease the build
python-version: '3.10.6' # Require the same version of python as Onyx builds, in order to ease the build


- name: Download the riscv64-onyx-linux toolchain
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.10.1' # Require the same version of python as Onyx builds, in order to ease the build
python-version: '3.10.6' # Require the same version of python as Onyx builds, in order to ease the build


# Runs a single command using the runners shell
Expand Down Expand Up @@ -322,9 +322,9 @@ jobs:
./scripts/ci/setup_sysroots.sh ${{ matrix.toolchain }} ${{ matrix.target_arch }}
- run: |
# Add a modifier to ubuntu 18.04 LTS
if [ "${{ matrix.os }}" = "ubuntu-18.04" ]; then
os_name_modifier="-ubuntu-18.04"
# Add a modifier to ubuntu 20.04 LTS
if [ "${{ matrix.os }}" = "ubuntu-20.04" ]; then
os_name_modifier="-ubuntu-20.04"
fi
case "${{ runner.os }}" in
Expand Down Expand Up @@ -420,7 +420,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.10.1' # Require the same version of python as Onyx builds, in order to ease the build
python-version: '3.10.6' # Require the same version of python as Onyx builds, in order to ease the build


- name: Download the arm64-onyx-linux toolchain
Expand Down Expand Up @@ -471,7 +471,7 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.10.1' # Require the same version of python as Onyx builds, in order to ease the build
python-version: '3.10.6' # Require the same version of python as Onyx builds, in order to ease the build


# Runs a single command using the runners shell
Expand Down

0 comments on commit ddd53f2

Please sign in to comment.