chore 📦: Improved build process for SDCC repository.

- Improved build process for SDCC repository.
This commit is contained in:
2025-02-23 10:19:54 +01:00
parent 51601be546
commit 8a3e35f311

View File

@@ -22,12 +22,18 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential libgmp-dev libmpfr-dev libncurses-dev git
sudo apt-get install -y build-essential libgmp-dev libmpfr-dev libncurses-dev git subversion
- name: Clone SDCC repository
# - name: Clone SDCC repository
# run: |
# git clone https://github.com/sdcc-team/sdcc.git
# cd sdcc
- name: Checkout SDCC using SVN
run: |
git clone https://github.com/sdcc-team/sdcc.git
cd sdcc
# Use SVN to checkout SDCC at a specific revision
# svn co -r [rev] svn://svn.code.sf.net/p/sdcc/code/trunk/sdcc
svn co -r 9092 svn://svn.code.sf.net/p/sdcc/code/trunk/sdcc
- name: Build SDCC
run: |