Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Force Ruby gem to install v0.31.1 ceedling #190

Merged
merged 1 commit into from
Jan 10, 2025
Merged
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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Build dependencies
run: ceedling project:linux verbosity[4] clobber dependencies:make
- name: Run wolfSSL Tests
Expand All @@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install gcc multi lib
run: |
sudo apt update
Expand All @@ -69,7 +69,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install ARM Tools
run: |
sudo apt update
Expand All @@ -87,7 +87,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install ARM Tools
run: |
sudo apt update
Expand All @@ -105,7 +105,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install ARM Tools
run: |
sudo apt update
Expand All @@ -123,7 +123,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install RISC-V Toolchain
run: |
sudo apt update
Expand All @@ -141,7 +141,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install automake
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install autoconf automake libtool
- name: Build dependencies
Expand All @@ -153,7 +153,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install automake
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install autoconf automake libtool
- name: Build dependencies
Expand All @@ -174,7 +174,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: gem install ceedling --no-user-install
run: gem install ceedling -v 0.31.1 --no-user-install
- name: Check Ceedling version
run: ceedling version
- name: Set up Visual Studio shell
Expand All @@ -196,7 +196,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install automake
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install autoconf automake libtool
- name: Run build
Expand All @@ -212,7 +212,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Install automake
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install autoconf automake libtool
- name: Run build
Expand All @@ -226,7 +226,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Ceedling
run: sudo gem install ceedling --no-user-install
run: sudo gem install ceedling -v 0.31.1 --no-user-install
- name: Run build
run: |
source android/android_env.sh ${{ matrix.arch }}
Expand Down
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ debian-deps:
RUN apt-get -y install --no-install-recommends build-essential git automake m4 libtool-bin cmake ruby-full python3-pip
# Not including colrm seems to give an error when configuring wolfssl
RUN apt-get -y install --no-install-recommends bsdmainutils
RUN gem install ceedling --no-user-install
RUN gem install ceedling -v 0.31.1 --no-user-install
RUN apt-get -y install --no-install-recommends gcovr

libhelium-deps:
Expand Down
Loading