-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add configobj as a submodule * Add submodule init * Change submodule init and remove sudo * Reorganize steps * Update docs for development version * Update unit tests
- Loading branch information
1 parent
a458f47
commit 5735097
Showing
19 changed files
with
156 additions
and
2,553 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,27 +66,30 @@ jobs: | |
image: fedora:latest | ||
options: --privileged | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
submodules: false | ||
- name: Configure container environment | ||
run: | | ||
sudo dnf update -y | ||
sudo dnf install -y git | ||
git config --global --add safe.directory ${GITHUB_WORKSPACE} | ||
- uses: actions/[email protected] | ||
with: | ||
submodules: false | ||
- name: Setup environment | ||
run: | | ||
sudo dnf install -y sdl12-compat python3-wxpython4 xorg-x11-server-Xvfb python3-pip psmisc | ||
sudo dnf downgrade -y mesa* --refresh | ||
sudo -H pip install -r requirements-dev.txt | ||
git submodule update --init --recursive | ||
pip install -r requirements-dev.txt | ||
- name: Run tests | ||
run: | | ||
Xvfb & | ||
export DISPLAY=:0 | ||
export GITHUB_ACTIONS=True | ||
git submodule update --init --recursive | ||
invoke test-ci | ||
- name: Install and run | ||
run: | | ||
git submodule update --init --recursive | ||
pip install . | ||
xvfb-run --server-args="-screen 0, 1280x720x24" -a ride.py & | ||
sleep 10 | ||
|
@@ -103,20 +106,24 @@ jobs: | |
submodules: false | ||
- name: Fetch tags | ||
run: | | ||
git fetch --prune --depth=1 --no-recurse-submodules | ||
git fetch --prune --depth=1 --recurse-submodules | ||
git submodule update --init --recursive | ||
- name: Setup environment | ||
run: | | ||
sudo apt update -y | ||
sudo apt install -y libsdl1.2debian libsdl2-2.0-0 libnotify4 | ||
sudo pip install https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04/wxPython-4.2.1-cp310-cp310-linux_x86_64.whl | ||
sudo pip install -r requirements-dev.txt | ||
git submodule update --init --recursive | ||
pip install https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04/wxPython-4.2.1-cp310-cp310-linux_x86_64.whl | ||
pip install -r requirements-dev.txt | ||
- name: Run tests | ||
run: | | ||
Xvfb & | ||
export DISPLAY=:0 | ||
git submodule update --init --recursive | ||
invoke test-ci | ||
- name: Install and run | ||
run: | | ||
git submodule update --init --recursive | ||
pip install . | ||
xvfb-run --server-args="-screen 0, 1280x720x24" -a ride.py & | ||
sleep 10 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "src/robotide/preferences/configobj"] | ||
path = src/robotide/preferences/configobj | ||
url = https://github.com/DiffSK/configobj.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.