mirror of
https://github.com/wez/wezterm.git
synced 2024-12-19 11:21:39 +03:00
1535d88290
* fix(generate-workflows): Do not use actions-rs [actions-rs/toolchain](https://github.com/actions-rs/toolchain) is unsupported: - Has not recieved updates since November 2020 (~2.5 years) - It uses Node.js 12 and GitHub will stop supporting it Summer this year(?) see this [article](https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/). [dtolnay/rust-toolchain](https://github.com/dtolnay/rust-toolchain) is actively supported and its mostly a 1-1 replacement, the differences are: - Uses the minimal profile always, so no need to specify it. - There is no need to override the toolchain. I also removed some things: - None of the generated actions use `rustfmt` so I removed the component - The toolchain is always stable, so I specified it in the action itself instead of in the action parameters. * ci: Regenerate workflows * fix: Remove ALLOW_UNSECURE_COMMANDS from action * fix(CentOS7): Manually install rustup as CentOS7 uses a very old curl * fix: Restart shell so that the rustup command is available * feat: Add exeption to the CentOS workflow to download rustup * fix: Remove actions-rs/toolchain from remaining workflows * fix: Address review comment
112 lines
3.5 KiB
YAML
112 lines
3.5 KiB
YAML
name: centos7
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "**/*.rs"
|
|
- "**/Cargo.lock"
|
|
- "**/Cargo.toml"
|
|
- ".github/workflows/gen_centos7.yml"
|
|
- "assets/fonts/**/*"
|
|
- "assets/icon/*"
|
|
- "assets/open-wezterm-here"
|
|
- "assets/shell-completion/**/*"
|
|
- "assets/shell-integration/**/*"
|
|
- "assets/wezterm-nautilus.py"
|
|
- "assets/wezterm.appdata.xml"
|
|
- "assets/wezterm.desktop"
|
|
- "ci/deploy.sh"
|
|
- "ci/tag-name.sh"
|
|
- "get-deps"
|
|
- "termwiz/data/wezterm.terminfo"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: "ubuntu-latest"
|
|
container: "quay.io/centos/centos:centos7"
|
|
|
|
steps:
|
|
- name: "Install SCL"
|
|
shell: bash
|
|
run: "yum install -y centos-release-scl-rh"
|
|
- name: "Update compiler"
|
|
shell: bash
|
|
run: "yum install -y devtoolset-9-gcc devtoolset-9-gcc-c++"
|
|
- name: "Cache Git installation"
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: "/usr/local/git"
|
|
key: "centos7-git-2.26.2"
|
|
- name: "Install Git from source"
|
|
shell: bash
|
|
run: |
|
|
yum install -y wget curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker make
|
|
if test ! -x /usr/local/git/bin/git ; then
|
|
cd /tmp
|
|
wget https://github.com/git/git/archive/v2.26.2.tar.gz
|
|
tar xzf v2.26.2.tar.gz
|
|
cd git-2.26.2
|
|
make prefix=/usr/local/git install
|
|
fi
|
|
ln -s /usr/local/git/bin/git /usr/local/bin/git
|
|
- name: "Install curl"
|
|
shell: bash
|
|
run: "yum install -y curl"
|
|
- name: "Ensure /run/sshd exists"
|
|
shell: bash
|
|
run: "mkdir -p /run/sshd"
|
|
- name: "Install openssh-server"
|
|
shell: bash
|
|
run: "yum install -y openssh-server"
|
|
- name: "Workaround git permissions issue"
|
|
shell: bash
|
|
run: "git config --global --add safe.directory /__w/wezterm/wezterm"
|
|
- name: "checkout repo"
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: "recursive"
|
|
- name: "Install Rustup"
|
|
shell: bash
|
|
run: |
|
|
|
|
if ! command -v rustup &>/dev/null; then
|
|
curl --proto '=https' --tlsv1.2 --retry 10 -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
|
|
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
|
|
fi
|
|
- name: "Setup Toolchain"
|
|
shell: bash
|
|
run: |
|
|
|
|
rustup toolchain install stable --profile minimal --no-self-update
|
|
rustup default stable
|
|
- name: "Cache cargo"
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
target
|
|
key: "centos7-None-2-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-cargo"
|
|
- name: "Install System Deps"
|
|
shell: bash
|
|
run: "env CI=yes PATH=$PATH ./get-deps"
|
|
- name: "Build (Release mode)"
|
|
shell: bash
|
|
run: "source /opt/rh/devtoolset-9/enable && cargo build --all --release"
|
|
- name: "Test (Release mode)"
|
|
shell: bash
|
|
run: "source /opt/rh/devtoolset-9/enable && cargo test --all --release"
|
|
- name: "Package"
|
|
shell: bash
|
|
run: "bash ci/deploy.sh"
|
|
- name: "Move RPM"
|
|
shell: bash
|
|
run: "mv ~/rpmbuild/RPMS/*/*.rpm ."
|
|
- name: "Upload artifact"
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: "centos7"
|
|
path: "wezterm-*.rpm"
|