Skip to content

Commit

Permalink
Create build2.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DevProp authored Mar 6, 2023
1 parent 4611999 commit 80a8396
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build SumatraPDF

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y mingw-w64

- name: Build SumatraPDF
run: |
export CC=x86_64-w64-mingw32-gcc
export CXX=x86_64-w64-mingw32-g++
./build.sh

0 comments on commit 80a8396

Please sign in to comment.