ci: fix broken apt install #29
Workflow file for this run
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: Presubmit Checks | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
linux-gcc: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
architecture: [32, 64] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: sudo apt-get update && sudo apt-get install gcc-multilib g++-multilib && make -j | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: make | |
test: | |
# running dudect in a virtualized environment is likely to give poor results... | |
name: smoke test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: sudo apt-get update && sudo apt-get install gcc-multilib g++-multilib && make -j | |
# this is too flakey in github actions | |
#- name: Run tests | |
# run: python3 test.py | |