Fix paths, & hello from microsoft windows. #58
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: Swift (Ubuntu x86/64) | |
on: [push] | |
jobs: | |
build: | |
name: Swift ${{ matrix.swift }} on ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
swift: ["5.10"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: swift-actions/setup-swift@v2 | |
with: | |
swift-version: ${{ matrix.swift }} | |
- uses: actions/checkout@v4 | |
- name: 📙 Install BZ2 | |
run: sudo apt install libbz2-dev | |
- name: 📓 Install ZLib | |
run: sudo apt install zlib1g-dev | |
- name: 🐍 Install Python | |
run: sudo apt install python3-dev | |
- name: 🖼 Install FreeGLUT | |
run: sudo apt install freeglut3-dev | |
- name: 🖥 Install Gtk | |
run: sudo apt install libgtk-4-dev | |
- name: 🚀 Install Boost | |
run: sudo apt install libboost-all-dev | |
- name: 📦 Build | |
run: swift build -c release --target Kraken |