Skip to content

Update build-freebsd-package.yml #17

Update build-freebsd-package.yml

Update build-freebsd-package.yml #17

name: Build FreeBSD Executable for WebSSH
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout WebSSH repository
uses: actions/checkout@v2
with:
repository: 'huashengdun/webssh'
path: 'webssh'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
cd webssh
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyinstaller
- name: Install qemu-user-static
run: |
sudo apt-get update
sudo apt-get install -y qemu-user-static
- name: Pull and run FreeBSD image
run: |
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker pull ustcmirror/freebsd-pkg:latest
docker run --rm -v ${{ github.workspace }}/webssh:/workspace -w /workspace \
ustcmirror/freebsd-pkg:latest \
sh -c "pkg install -y python3 py39-pip && \
pip install -r requirements.txt && \
pip install pyinstaller && \
pyinstaller --onefile webssh/__main__.py --name webssh"
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: webssh-freebsd
path: webssh/dist/webssh