Update to Freeciv server freeciv/freeciv@a3da3434b5 #1107
Workflow file for this run
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
name: continuous integration | |
on: | |
- pull_request | |
- push | |
- workflow_dispatch | |
jobs: | |
normal: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: check out Freeciv-web | |
uses: actions/[email protected] | |
- name: prepare | |
run: | | |
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1 | |
sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1 | |
ip addr # for confirmation. can be skipped | |
sudo apt-get remove ^postgresql 'mysql.*' | |
sudo rm -rf /var/lib/mysql | |
- name: install | |
shell: bash | |
run: PIP_SKIP=Y ./scripts/install/install.sh --mode=TEST |