ci: remove obsolete step from arm64 build workflow #14
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: build (x64) | |
on: [push] | |
jobs: | |
build-x64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install prerequisites | |
run: | | |
rustup target add x86_64-pc-windows-gnu | |
sudo apt-get install gcc-mingw-w64 nasm llvm | |
- name: Build | |
run: make x64 |