Skip to content

Completely create FTP commands at the ftp::client level, not at the c… #212

Completely create FTP commands at the ftp::client level, not at the c…

Completely create FTP commands at the ftp::client level, not at the c… #212

Workflow file for this run

name: macOS
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
env:
FTP_CLIENT_TEST_SERVER_PATH: ${{github.workspace}}/test/ftp/server/server.py
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Get externals
run: brew install boost
- name: Build
run: |
mkdir -p build/release && \
cmake -S . -B build/release -DCMAKE_BUILD_TYPE=Release && \
cmake --build build/release
- name: Test FTP
working-directory: ${{github.workspace}}/build/release/test
run: ./ftp_test
- name: Test cmdline
working-directory: ${{github.workspace}}/build/release/test
run: ./cmdline_test