mirror of
https://github.com/lakinduakash/linux-wifi-hotspot.git
synced 2024-11-10 06:00:11 +00:00
14 lines
464 B
YAML
14 lines
464 B
YAML
|
|
before_install:
|
|
- mkdir $HOME/usr
|
|
- export PATH="$HOME/usr/bin:$PATH"
|
|
- wget https://github.com/Kitware/CMake/releases/download/v3.14.2/cmake-3.14.2-Linux-x86_64.sh
|
|
- chmod +x cmake-3.14.2-Linux-x86_64.sh
|
|
- ./cmake-3.14.2-Linux-x86_64.sh --prefix=$HOME/usr --exclude-subdir --skip-license
|
|
- sudo apt-get install -y build-essential libgtk-3-dev
|
|
|
|
script:
|
|
# - make
|
|
# - sudo PATH="$HOME/usr/bin:$PATH" make install
|
|
- echo "Test Finished"
|