Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install pip3 dependencies
run: |
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/build-toolchains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ env:

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest

strategy:
fail-fast: false
Expand All @@ -58,7 +58,7 @@ jobs:
- { mode: newlib, target: arc32 }

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install apt dependencies
run: |
sudo apt-get -y update
Expand Down Expand Up @@ -92,13 +92,12 @@ jobs:
MODE="elf";
fi

if [ -n ${{ inputs.release_tag }} ]; then
RELEASE_TAG="${{ inputs.release_tag }}"
else
RELEASE_TAG="${{ inputs.release_tag }}"
if [[ -z $RELEASE_TAG ]]; then
RELEASE_TAG="$(date --utc '+%Y.%m.%d')"
fi

echo ::set-output name=toolchain_name::${{ matrix.target }}-${MODE}-${RELEASE_TAG}
echo "toolchain_name=${{ matrix.target }}-${MODE}-${RELEASE_TAG}" >> $GITHUB_OUTPUT

autoconf

Expand Down