Skip to content

Commit

Permalink
update ci builds to use latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
coder5506 committed Oct 9, 2021
1 parent 7ab80da commit c218ddd
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/buildship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
runs-on: ${{ matrix.os }}
env:
CM3INST: ${{ format('/{0}/runner/cm3', startsWith(matrix.os, 'macOS') && 'Users' || 'home') }}
CM3VER: d5.11.1-20210610
M3_BACKEND_MODE: ${{ (matrix.backend != 'gcc') && matrix.backend || '' }}
steps:
- name: Install prerequisites (macOS)
Expand All @@ -24,19 +23,15 @@ jobs:
run: |
sudo apt-get update --quiet
sudo apt-get install --quiet --assume-yes libglu1-mesa-dev xorg-dev
- name: Install mariadb prerequisite (ubuntu-20.04)
if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt-get install --quiet --assume-yes libmariadbclient-dev
- name: Create install directory
run: |
mkdir -p "${CM3INST}/bin"
echo "${CM3INST}/bin" >> $GITHUB_PATH
- name: Install bootstrap compiler
run: |
curl "https://github.com/modula3/cm3/releases/download/unix64le-${CM3VER}/cm3-boot-unix64le-${CM3VER}.cpp.gz" --location --remote-name --silent
gunzip "cm3-boot-unix64le-${CM3VER}.cpp.gz"
g++ -g -pthread -o "${CM3INST}/bin/cm3" "cm3-boot-unix64le-${CM3VER}.cpp"
curl "https://github.com/modula3/cm3/releases/download/d5.11.3/cm3-boot-unix64le-d5.11.3-20211007.cpp.gz" --location --remote-name --silent
gunzip "cm3-boot-unix64le-d5.11.3-20211007.cpp.gz"
g++ -g -pthread -o "${CM3INST}/bin/cm3" "cm3-boot-unix64le-d5.11.3-20211007.cpp"
- name: Fetch sources
uses: actions/checkout@v2
- name: Run bootstrap
Expand Down

0 comments on commit c218ddd

Please sign in to comment.